Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
tzahimaimon opened this issue Aug 10, 2022 · 2 comments
Open

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

tzahimaimon opened this issue Aug 10, 2022 · 2 comments

Comments

@tzahimaimon
Copy link

tzahimaimon commented Aug 10, 2022

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
Copy link
Owner

9nix6 commented Aug 10, 2022

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
Copy link
Author

Thank you very much.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants