As the title says, I'm completely lost when it comes to programming, at most I've dabbled with ThinkScript on Think Or Swim. I have an indicator that was uploaded onto this site back in 2008, I'd like to see a couple of quick additions to it if anybody is willing to help?
The indicator in question is the Guppy MACD posted by Rollins
http://www.ninjatrader.com/support/f...&catid=1&id=44
the couple of things I'd like added ...
1) just a simple 0 line (horizontal line at value 0)
2) some kind of indication, a dot, or an up/down arrow when the histogram meets conditions.
for bullish, the histogram 4 bars back crossed up and over the zero line (histo[4] >= 0), then the next 3 histo bars make higher values consecutively.
histo >= histo[1], histo[1] >= histo[2] etc all the way back to histo[4]
for bearish, the histogram 4 bars back crossed down and under the zero line (histo[4] <= 0), then the next 3 histo bars make lower values consecutively.
histo<>= histo[1], histo[1] <= histo[2] etc all the way back to histo[4]
If anybody could help with this, your assistance would be greatly appreciated, thank you!
Comment