PDF: Group Mentoring Meeting Notes 2018-10-12
Great session to wrap up a week of collaborative development! More importantly, we are spending time making plans to turn the extensive amount of data into simple and practical trading plans. Each one will have a different path to accomplish this. Those who are making the most progress are keeping it far simpler than would be theoretically optimal.
Radar Screen Code
Vars: udc15(0), ldc15(0), udc5(0), ldc5(0), _15(""), _5(""); udc15 = highest(h,15)[1]; ldc15 = lowest(l,15)[1]; udc5 = highest(h,5)[1]; ldc5 = lowest(l,5)[1]; If H > udc15[1] then _15 = "Bull"; If L < ldc15[1] then _15 = "Bear"; If H > udc5[1] then _5 = "Bull"; If L < ldc5[1] then _5 = "Bear"; plot1(_15,"15"); Plot2(_5,"5"); If _15 = "Bear" then setplotBGcolor(1,red) else setplotBGcolor(1,darkgreen); If _5 = "Bear" then setplotBGcolor(2,red) else setplotBGcolor(2,darkgreen);