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

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.
    JimNinjaTrader Customer Service

    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.
        JimNinjaTrader Customer Service

        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 Radano, 06-10-2021, 01:40 AM
            20 responses
            616 views
            0 likes
            Last Post NinjaTrader_BrandonH  
            Started by Mizzouman1, Today, 07:35 AM
            0 responses
            6 views
            0 likes
            Last Post Mizzouman1  
            Started by i019945nj, 12-14-2023, 06:41 AM
            6 responses
            66 views
            0 likes
            Last Post i019945nj  
            Started by aa731, Today, 02:54 AM
            1 response
            8 views
            0 likes
            Last Post NinjaTrader_BrandonH  
            Started by BarzTrading, Today, 07:25 AM
            0 responses
            3 views
            0 likes
            Last Post BarzTrading  
            Working...
            X