Login Page - Create Account

Support Board


Date/Time: Sat, 22 Feb 2025 09:13:40 +0000



Post From: Buy/Sell Pressure Study Help

[2014-04-27 21:57:58]
crazybears - Posts: 314
i thought that at the start of each day indicator is reset and indicator is calculated accumulated on each new tick , not for each single bar , am i wrong?

UpT[Index] = UpT[Index - 1] + sc.UpTickVolume[Index];
DownT[Index] = DownT[Index - 1] + sc.DownTickVolume[Index];
TotUpDownT[Index]=UpT[Index]+DownT[Index];
BuySellMeter[Index] = ((UpT[Index]-DownT[Index])/(TotUpDownT[Index]))*100;