+91-0000000000

}

Monday – Friday : 9:00 AM – 6:30 PM

Guppy RSI system

Guppy RSI System within Amibroker AFL incorporates the Relative Strength Index (RSI) into the Guppy system. Utilizing the Amibroker data feed, this system calculates RSI values to gauge overbought or oversold market conditions. Traders integrate Guppy RSI into their strategies to identify potential reversals or continuations based on RSI signals within the Guppy framework.

/_SECTION_BEGIN("Guppy RSI");
r = RSI(5); 
Plot (EMA(r,3),"",colorWhite,styleLine);
Plot (EMA(r,5),"",colorBlue,styleLine);
Plot (EMA(r,8),"",colorBlue,styleLine+styleNoLabel);
Plot (EMA(r,10),"",colorBlue,styleLine+styleNoLabel);
Plot (EMA(r,12),"",colorBlue,styleLine+styleNoLabel);
Plot (EMA(r,15),"",colorBlue,styleLine+styleNoLabel);

Plot (EMA(r,25),"",colorYellow,styleLine);
Plot (EMA(r,30),"",colorRed,styleLine+styleNoLabel);
Plot (EMA(r,35),"",colorRed,styleLine+styleNoLabel);
Plot (EMA(r,40),"",colorRed,styleLine+styleNoLabel);
Plot (EMA(r,45),"",colorRed,styleLine+styleNoLabel);
Plot (EMA(r,50),"",colorRed,styleLine+styleNoLabel);
Plot (EMA(r,50),"",colorRed,styleLine);
_SECTION_END();

Open chat
1
Hi, how can I help you?