Login Page - Create Account

Support Board


Date/Time: Mon, 03 Feb 2025 13:58:16 +0000



Post From: Ask volume Bid volume difference text

[2019-11-15 19:12:11]
DevTrader79 - Posts: 44
Thanks for getting back to me soon. Sounds good
Possibly I will inject code like this.
It is a great help highly appreciated.

if (sc.SetDefaults)
{
// initialization existing code
}
sc.ValueFormat = 0; // my addition no decimal
if (sc.AskVolume[sc.Index] > sc.BidVolume[sc.index])
Subgraph_Difference[sc.Index] = sc.AskVolume[sc.Index] - sc.BidVolume[sc.Index];
else
Subgraph_Difference[sc.Index] = sc.BidVolume[sc.Index] - sc.AskVolume[sc.Index];
// then the rest as it is
if (Input_DisplayAboveOrBelow.GetIndex() == 0)
{
//existing code
}