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 Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            630 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            364 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            105 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            565 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            568 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X