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
{{ message }}
This repository was archived by the owner on Feb 22, 2024. It is now read-only.
Most Indicators require a Candles List to work off, this is fine.
The candles lists list the last 1000 candles, this is fine.
The issue, is that the indicator seems to use the Oldest available Data in the list, whereas most of the time, a user is likely wanting to use the most fresh data first, meaning that result that we get is the indicator is 1000 candles old.
There is no simple way to tell an incidator to use the end of the string, I have "worked around this"
in 2 ways;
1 is to create my own list using a loop that counts backwards, then using that data
or
2 snipping the last few candles for the period I want using "Get Sub List"
Most Indicators require a Candles List to work off, this is fine.
The candles lists list the last 1000 candles, this is fine.
The issue, is that the indicator seems to use the Oldest available Data in the list, whereas most of the time, a user is likely wanting to use the most fresh data first, meaning that result that we get is the indicator is 1000 candles old.
There is no simple way to tell an incidator to use the end of the string, I have "worked around this"
in 2 ways;
1 is to create my own list using a loop that counts backwards, then using that data
or
2 snipping the last few candles for the period I want using "Get Sub List"