You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe that the "High" and "Low" price information is the most important piece of information in daily market data (current-day).
Only "Bid" and "Ask" are available as information "on_tick" at the moment.
We should have a function called "on_tick_daily", is what I propose. Open, High, Low, and Bid
Please point me in the right direction if I'm missing how to access those four bits of data using the on_tick method.
regards
The text was updated successfully, but these errors were encountered:
Hi,
Sorry for the late reply.
Open/High/Low/Close is only available using bars, not ticks. Ticks are defined as only bid/ask.
You could subscribe to bar data like this:
I believe that the "High" and "Low" price information is the most important piece of information in daily market data (current-day).
Only "Bid" and "Ask" are available as information "on_tick" at the moment.
We should have a function called "on_tick_daily", is what I propose. Open, High, Low, and Bid
Please point me in the right direction if I'm missing how to access those four bits of data using the on_tick method.
regards
The text was updated successfully, but these errors were encountered: