Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
113
views
asked 2 years ago by
Category: Chart Studies
I'd like to plot a line chart of the percentage of stocks in an index above a moving average. Particularly the percentage of stocks in the S&P500 above the 50SMA. Thanks for any help you can provide.
0
votes
1
answer
113
views
asked 1 year ago by
Category: Chart Studies
Hello, I am having a tough time mimicking code that a group of traders I am thankful to be a part of use on NinjaTrader; I posted a picture for reference. So when the 8, 20, 50, 100 & 200EMAs are stacked in an uptrend, the background of portion i...
0
votes
1
answer
112
views
asked 7 years ago by
Category: Chart Studies
Hello Mr. Hanh. I was wondering is it possible to have a normal CCI 14 (that can be hidden) but somehow have it post the "share price" on the chart that would needed for the CCI to cross the "zero line." I am not sure if such a thing is possible but ...
0
votes
1
answer
112
views
asked 5 years ago by
Category: Chart Studies
Hi Pete,   Thank you for the helpful studies. I currently have this one liner which is used to capture % change for a single day. def pc = Round(100*((close/open(period = AggregationPeriod.DAY))-1),1); I would like for it to only capture %change...
0
votes
1
answer
112
views
asked 4 years ago by
Category: Chart Studies
Hello.  I am trying to implement a two timeframe stochastic on a one minute chart on ToS by adapting some code I found online.  The 1 min stochastic is fine, but the 10 min is plotted like a step function.  I assume because its calculating and plotti...
0
votes
1
answer
112
views
asked 1 year ago by
Category: Chart Studies
Hello, Is it possible to get all 3 TimeSeriesForecast lines on one chart for different time frames like 1 min, 5 min, 30 min all on the 1 min time chart? The inputs for the TimeSeriesForecast would be the same but for different period aggregations. T...
0
votes
1
answer
112
views
asked 1 year ago by
Category: Chart Studies
Hi Currently, TOS has the above indicator, but i will like to change the settings from using number of advances and declines to volume of advances and declines. Is it possible? The full code for the indicator on TOS is declare lower; input exchange =...
0
votes
1
answer
112
views
asked 1 year ago by
Category: Chart Studies
I have an inside bar indicator I love to use but I was looking for some help in only showing the bar when the RSI is overbought or oversold.  I hope this is quick and easy and I always appreciate all the help!     #hint: double inside day -...
0
votes
1
answer
111
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, Hope everything is well. I have a simple requirement, which I hope you could guide within your time allowance. I searched the forum but could not find any results. I am looking to plot only the first crossover in a day (regular trading hours...
0
votes
1
answer
111
views
asked 3 years ago by
Category: Chart Studies
I'm trying to define the highest point (indicated with the two red arrows) before the MACD cross. Ultimately I will add the ATR value to that point to determine my stop loss. Just not sure how to define that point. Thanks! Ive worked on a couple of i...