Support Board
Date/Time: Sun, 08 Jun 2025 00:50:46 +0000
Post From: Programming Help ACSIL
[2022-10-13 23:49:15] |
ForgivingComputers.com - Posts: 1063 |
Searching for SC_ASKNT in the header files, I found this: //Refer to ACSIL Arrays and Variables documentation for descriptions of each of these sc.BaseDataIn[] constants const int SC_OPEN = 0; const int SC_HIGH = 1; const int SC_LOW = 2; const int SC_LAST = 3; const int SC_VOLUME = 4; const int SC_OPEN_INTEREST = 5; const int SC_NUM_TRADES = 5; const int SC_OHLC_AVG = 6; const int SC_OHLC = 6; const int SC_HLC_AVG = 7; const int SC_HLC = 7; const int SC_HL_AVG = 8; const int SC_HL = 8; const int SC_BIDVOL = 9; const int SC_ASKVOL = 10; const int SC_UPVOL = 11; const int SC_DOWNVOL = 12; const int SC_BIDNT = 13; const int SC_ASKNT = 14; const int SC_ASKBID_DIFF_HIGH = 15; const int SC_ASKBID_DIFF_LOW = 16; const int SC_ASKBID_NUM_TRADES_DIFF_HIGH = 17; //SC_ASKBID_NT_DIFF_HIGH const int SC_ASKBID_NUM_TRADES_DIFF_LOW = 18; //SC_ASKBID_NT_DIFF_LOW const int SC_UPDOWN_VOL_DIFF_HIGH = 19; const int SC_UPDOWN_VOL_DIFF_LOW = 20; const int SC_RENKO_OPEN = 21; const int SC_POINT_FIGURE_HIGH = SC_RENKO_OPEN; const int SC_RENKO_CLOSE = 22; const int SC_POINT_FIGURE_LOW = SC_RENKO_CLOSE; const int SC_BID_PRICE = 23; const int SC_ASK_PRICE = 24; const int SC_ASK_BID_VOL_DIFF_MOST_RECENT_CHANGE = 25; Since SC_ASKNT is Number of Ask trades, I suggest trying SC_NUM_TRADES. Date Time Of Last Edit: 2022-10-14 01:51:31
|