TradingView
Tr0sT
2018年5月24日晚上8點33分

Linda Raschke's Holy Grail 

描述

Another script based on Linda Raschke's strategy with the same name from her book about swing trading.

發布通知

More plots and custom backtesting period
評論
Madcaptains
Hi Tr0st. Thank you for sharing your work on this.

I compared it to my interpretation of Linda’s Holy Grail and I’m a little confuse about when your script goes long. From linda’s book: « when price touches the 20-period ema, put a buy stop above the high o the previous bar ». My interpretation of Linda’s instruction are on the image below



Could you explain where your script enters the trade. Unless I got something srong, it seems to wait for a different signal.

Thank you again
View4U
@Madcaptains,
This info from Linda's book sure makes scanning for a trade set up on a Daily TF a much more convincing task !
glkatz81
So, for some reason, when I load this indicator is squashes my chart down to the point where it can't be read. Everything is just one line and even if I try to expand things in the right hand price column it makes no difference. Any thoughts as to what I'm clearly doing wrong? Thank you.
Tr0sT
@glkatz81, I've forgotten to remove hidden plots for debug purpose (lines 127 and 129) - they are the reason of chart collaps. You can remove these lines by yourself. But anyway, even without removing them, it should be possible to scale chart using price column...
glkatz81
Hi. I continue to work my way through Linda's book and I continue to be impressed by the TradingView community. Thank you for not only coding this but also sharing. You've made life easier for someone like me who isn't (in all likelihood) anywhere capable of coding this. Thank you!
electronicZebr37350
@glkatz81, Hi, I tried to remove lines 127 and 129 but the chart still collapse. How did you manage to fix this?
Tr0sT
@electronicZebr37350, try change plots from plot(x,...) to plot(x == 0 ? na : x, ...)
更多