Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

ATI and external home-made C++ application

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

    ATI and external home-made C++ application

    Hello everybody,

    I need to know if it's possible to connect my stand-alone external c++ application (built with VS2003) to NinjaTrader ATI for automated trading (i've installed NT 6.5.1000.7). I don't use eSignal/TS/NinjaScript or whatelse, just my app.

    Following my simple code to get connection with NTDirect.dll library:

    -------------------------------
    typedef int (CALLBACK* pFnFromStringToInt)(std::string);

    char strFilePath[1024];
    strcpy(strFilePath, "C:\\WINDOWS\\system32\\NTDirect.dll");

    CString dllFilePath;
    dllFilePath.Format("%s", strFilePath);
    m_hNinjaDll = LoadLibrary(dllFilePath);
    if (m_hNinjaDll)
    {

    pFnFromStringToInt pSubscribeFunc =
    (pFnFromStringToInt)GetProcAddress(m_hNinjaDll, "SubscribeMarketData");
    if (pSubscribeFunc)
    {
    int ret = (pSubscribeFunc)("ES 12-08"); <---- CRASH
    }
    }
    -------------------------------

    I get a crash when subscribing market data.

    I searched through all this forum, but found anything about this specific question.

    Thank you in advance.

    Bye.
    --
    Marco

    #2
    Hello,

    I will wait to see if fellow traders will reply with something as this is beyond the level of support we provide.
    DenNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    71 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    43 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    25 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    28 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    56 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X