optional user selection of OHLC input to indicators
See original GitHub issuecalculating output of indicator can be depend to Open, High, Low or close . at this moment calculating indicators is on “Close” default . and it is not possible to calculate in other mode.
for example GetRSI
method always calculated on close of candles. i see that it has implemented ConvertToBasic
method and this one choose close defualt .
why not have input parameter source
to choose ConvertToBasic parameter
Issue Analytics
- State:
- Created 2 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
Add Indicators on Chart
Use optional parameters; Specify output style; Use on-chart indicator parameters; Include in OHLC; Plot on newly opened chart; Randomize output style and ...
Read more >Indicator to Plot the OHLC - user selected start/stop times
The indicator will now start plotting the opening range, when complete but plot the line back to where it started. The following ...
Read more >Ohlc — Indicators and Signals - TradingView
OHLC Tool allows you to display Current or Historical OHLC Values as horizontal lines that extend to the right on your chart. Features...
Read more >Interactive Financial Chart
This example demonstrates a full-featured financial chart in which the user can select the time ranges, technical indicators, and various chart options.
Read more >Indicator with Indicator as Input Series
NinjaTrader 7: When an indicator is selected as input series, Open, High, Low, Close, Median, Typical and Weighted are remapped to Input.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
yes, I understand the need for history, but ultimately the SMA/EMA only need a decimal array, they don’t need the rest of the candle. So if I could do something like:
an option could be to have the indicator taking streams of values that could be built by scanning the candles. For example an EMA just needs a price; so if you could have candles -> streambuilder -> ema you’d be able to use the data you want, including non candle sources such as a straight source or prices. right now the indicators imply that you have all the candle data available, but it is not useful in many cases