The Market Switch

Gonna be rather geeky, but it kept me engaged and made me excited.

So I’m building on this CounterForce / CounterRejoyce pair.

In Forex things may happen more quickly and you may need a faster trigger than a Weekly 59 EMA.

The activity we’re touching upon here is the radioactivity.

The image below shows the stages of breaking into a Bear / Bull phase.

Mirror mirrror

    if (corr[i]>corr2[i] && Close[i]<corr2[i]){
    ObjectCreate("Hot"+IntegerToString(i), OBJ_TEXT, 0, Time[i], Low[i]-70*Point); 
    ObjectSetText("Hot"+IntegerToString(i), CharToStr(62), 42, "Wingdings", clrRed);                                                      
   }
   
    if (corr[i]<corr2[i] && Close[i]>corr2[i]){
    ObjectCreate("Hot"+IntegerToString(i), OBJ_TEXT, 0, Time[i], High[i]+70*Point); 
    ObjectSetText("Hot"+IntegerToString(i), CharToStr(62), 42, "Wingdings", clrGreen);                                                      
   }