Login Page - Create Account

Support Board


Date/Time: Thu, 26 Feb 2026 02:46:31 +0000



Post From: Add ACSIL variable for “ Market Depth Combine Increment in Ticks”

[2026-02-05 15:34:45]
gcUserStudies - Posts: 124
Thanks for adding this!

I'm testing version 2877 and see the new functions have been added. I have set my chart's "Market Depth Combine Increment in Ticks" set to 2. Then I call the function to get the value, and also try setting the value to 5, and then get the value again. Here are the results. I may be doing something wrong, but wanted to double check. And also checking the value in the chart settings it didn't change to 5 either:


...
// Get initial value
apiValueBefore = sc.GetMarketDepthCombineIncrementInTicks(sc.ChartNumber);

// Try setting to 5
apiSetResult = sc.SetMarketDepthCombineIncrementInTicks(sc.ChartNumber, 5);

// Get value again to see if it changed
apiValueAfter = sc.GetMarketDepthCombineIncrementInTicks(sc.ChartNumber);
...

Log of result: "Debug: SC=2877, ChartNum=1, API_Before=0, Set(5)=0, API_After=0"