Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

BitfFinex - Add On

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

    #16
    Hello Subhash,

    Welcome to the forums!

    While the DLL interface would be the route forward, we do not have any examples to provide and we would not support any external implementation using the DLL interface. It is simply provided as-is.

    If someone else on the forums would like to share their experiences, they are welcome to provide further input.

    Comment


      #17
      no data

      Hi,

      i have issues getting data from Bitfinex;

      addon succesfully imported
      bitfinex connection shows
      all instruments show ( @BTCUSD / @ETHUSD etc etc.)

      BUT no data appears in chart.

      Already working in another thread ( http://www.ninjatrader.com/support/f...7&goto=newpost )
      but appreciate any help!

      Regards,

      Rob

      Comment


        #18
        Hello Rob,

        This third party AddOn is not supported by NinjaTrader and we could not offer any direct assistance for its usage.

        For support inquiries involving third party vendor products, I recommend reaching out to that particular vendor.

        If there is another matter involving the NinjaTrader platform that you would like to address, please feel free to open a new thread.

        Comment


          #19
          ok thanks .

          Comment


            #20
            Originally posted by NinjaTrader_Jim View Post
            Hello kujista,

            There is not a supported way to add instruments or instrument lists through NinjaScripts.
            This does the job

            Code:
              foreach (string instrumentEntry in symbols)
                            {                   
                                string text = instrumentEntry.ToUpper().Trim();
                                MasterInstrument masterInstrument = MasterInstrument.DbGet(text, (InstrumentType) 1);
                                bool flag3 = masterInstrument == null;
                                if (flag3)
                                {
                                    masterInstrument = new MasterInstrument
                                    {
                                        Currency = (Currency) 7,
                                        Description = "Bitfinex " + text,
                                        Exchanges =
                                        {
                                            Exchange.Default
                                        },
                                        InstrumentType = InstrumentType.Stock,
                                        Name = text,
                                        PointValue = 1.0,
                                        TickSize = 0.001,
                                        TradingHours = TradingHours.Get("Default 24 x 7")
                                    };
                                    masterInstrument.DbAdd(true);
                                }
                            }

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by CarlTrading, 03-31-2026, 09:41 PM
            1 response
            43 views
            0 likes
            Last Post NinjaTrader_ChelseaB  
            Started by CarlTrading, 04-01-2026, 02:41 AM
            0 responses
            20 views
            0 likes
            Last Post CarlTrading  
            Started by CaptainJack, 03-31-2026, 11:44 PM
            0 responses
            29 views
            1 like
            Last Post CaptainJack  
            Started by CarlTrading, 03-30-2026, 11:51 AM
            0 responses
            46 views
            0 likes
            Last Post CarlTrading  
            Started by CarlTrading, 03-30-2026, 11:48 AM
            0 responses
            38 views
            0 likes
            Last Post CarlTrading  
            Working...
            X