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 funk10101, Today, 12:02 AM
    1 response
    11 views
    0 likes
    Last Post NinjaTrader_LuisH  
    Started by GLFX005, Today, 03:23 AM
    1 response
    6 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by nandhumca, Yesterday, 03:41 PM
    1 response
    13 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by The_Sec, Yesterday, 03:37 PM
    1 response
    11 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by vecnopus, Today, 06:15 AM
    0 responses
    1 view
    0 likes
    Last Post vecnopus  
    Working...
    X