Median-and-Turbo-Renko-indicator-bundle icon indicating copy to clipboard operation
Median-and-Turbo-Renko-indicator-bundle copied to clipboard

Replace/Add count of Buy and Sell Volume by Ask and Bid Prices

Open tzahimaimon opened this issue 3 years ago • 2 comments

hi Arthur I wish if you can add the option for counting Buy and Sell Volumes via Ask and Bid ticks/orders, the current method used by MT5 is not correct and the more precise method to see Buy and Sell Volumes is using this code:

        buy_tick = (tick.last >= tick.ask) 
        sell_tick = (tick.last <= tick.bid) 

With this lines of code we counting the volumes on the Ask and the volumes on the Bid side. I tried writing my own indicator using this code but the its not working well when there are a lot of ticks.

Please add this feature as option or flag. Thank you

tzahimaimon avatar Aug 10 '22 18:08 tzahimaimon

Hi, Thank you for your input. I'll consider adding this feature to the indicator when I'm updating the code. I need to find a suitable place for enabling this in the indicator settings which are already maxed out.

9nix6 avatar Aug 10 '22 19:08 9nix6

Thank you very much.

tzahimaimon avatar Aug 10 '22 19:08 tzahimaimon