Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Sample connection adapter

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • chadnash
    replied
    From my brief knowledge of this I believe its mostly just the label of the provider and the actual code is then referenced in the class and overridable functions you have here.

    -Chad
    Last edited by NinjaTrader_PatrickG; 07-06-2021, 06:24 AM.

    Leave a comment:


  • Airwave
    replied
    Hello everyone,

    each int number of a provider seems to refer to different connection providers with its settings:

    base.Provider = (Provider)1000;

    Is that correct, that this is a fixed list of connections? Or am I able to define an own custom connection name?

    Thanks in advance.

    Leave a comment:


  • Serialcoder
    replied
    This is the foundation of a connection

    Code:
    public class AdapterConnectOptions : CustomConnectOptions
        {
            [Browsable(false)]
            public override Type AdapterClassType
            {
                get { return typeof(NinjaTraderAdapter); }
            }
    
            public AdapterConnectOptions()
            {
                base.Provider = (Provider)1000;
            }
        }
    
        public class NinjaTraderAdapter : AdapterBase, IAdapter, IDisposable
        {
            void IAdapter.Cancel(Order[] orders)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.Change(Order[] orders)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.Connect(IConnection connection)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.Disconnect()
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.RequestBars(IBars bars, Action<IBars, ErrorCode, string> callback, IProgress progress)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.RequestHotlistNames(Action<string[], ErrorCode, string> callback)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.ResolveInstrument(Instrument instrument, Action<Instrument, ErrorCode, string> callback)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.Submit(Order[] orders)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.SubscribeAccount(Account account)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.SubscribeFundamentalData(Instrument instrument, Action<FundamentalDataType, object> callback)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.SubscribeHotlist(Hotlist hotlist, Action callback)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.SubscribeMarketData(Instrument instrument, Action<MarketDataType, double, long, DateTime, long> callback)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.SubscribeMarketDepth(Instrument instrument, Action<int, string, Operation, MarketDataType, double, long, DateTime> callback)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.SubscribeNews()
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.UnsubscribeAccount(Account account)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.UnsubscribeFundamentalData(Instrument instrument)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.UnsubscribeHotlist(Hotlist hotlist)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.UnsubscribeMarketData(Instrument instrument)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.UnsubscribeMarketDepth(Instrument instrument)
            {
                throw new NotImplementedException();
            }
    
            void IAdapter.UnsubscribeNews()
            {
                throw new NotImplementedException();
            }
    
            public void Dispose()
            {
                throw new NotImplementedException();
            }
        }

    Leave a comment:


  • NinjaTrader_Jim
    replied
    Hello jshapen,

    Thanks for opening the thread.

    I know it doesn't support, but if you can help me...
    This is true. We don't have any documentation on connection adapters or support creating your own so there isn't any further direction I could offer.

    People have been able to use the External Data Feed in conjunction with the DLL interface to connect to unsupported connections for market data. You may reference the DLL interface documentation as well as the example linked below. These are all the resources we have available for this feature and support is very limited since the DLL interface is provided as-is.

    DLL interface - https://ninjatrader.com/support/help..._interface.htm

    Example program - https://ninjatrader.com/support/foru...442#post514442

    I'll leave this thread open ended in case another member of the forums would like to share their input.
    Last edited by NinjaTrader_Jim; 02-28-2018, 08:37 AM.

    Leave a comment:


  • jshapen
    started a topic Sample connection adapter

    Sample connection adapter

    deleted by user
    Last edited by jshapen; 04-29-2018, 12:31 PM.

Latest Posts

Collapse

Topics Statistics Last Post
Started by PhillT, 04-19-2024, 02:16 PM
4 responses
30 views
0 likes
Last Post PhillT
by PhillT
 
Started by ageeholdings, 05-01-2024, 05:22 AM
5 responses
36 views
0 likes
Last Post ageeholdings  
Started by reynoldsn, Today, 02:34 PM
0 responses
7 views
0 likes
Last Post reynoldsn  
Started by nightstalker, Today, 02:05 PM
0 responses
12 views
0 likes
Last Post nightstalker  
Started by llanqui, Yesterday, 09:59 AM
8 responses
29 views
0 likes
Last Post llanqui
by llanqui
 
Working...
X