Login Page - Create Account

Support Board


Date/Time: Sun, 05 May 2024 09:59:38 +0000



Post From: Nasdaq total view with IB chart trading

[2022-02-08 17:38:11]
User504778 - Posts: 22
I believe the default route for IB trading is SMART, so unless you specify the market maker or change the default setting in IB, the order will be routed through IB's algorithm. You will see that every order goes through a different MM in the order history.

Certainly if you want to be sure, the code can be simply modified as:


#include "sierrachart.h"

SCDLLName("NQTV IB Trading DLL")

SCSFExport scsf_NQTV_IB_Trading(SCStudyInterfaceRef sc)

{

sc.GraphRegion = 0;

sc.GraphName = "NQTV IB Trading";

if (sc.Symbol.Right(5) != "-NQTV"){

sc.DataFile = sc.Symbol + "-NQTV.scid";

sc.TradeAndCurrentQuoteSymbol = sc.Symbol + "-STK-SMART-USD";

}

}