9nix6 / Median-and-Turbo-Renko-indicator-bundle

MQL5 header file for 'Median and Turbo renko indicator bundle' available for MT5 via MQL5 Market. The file lets you easily create a Renko EA in MT5 using the Median Renko indicator.
https://www.mql5.com/en/market/product/16347
GNU General Public License v3.0
82 stars 38 forks source link

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

Open tzahimaimon opened 2 years ago

tzahimaimon commented 2 years ago

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

9nix6 commented 2 years ago

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.

tzahimaimon commented 2 years ago

Thank you very much.