need to help for Explore afl

pareshR

Well-Known Member
#1
Hello

i need explore afl for following conditions:
if cmp near by BB (OR +/- 0.10% or 15% ) then is give alerts to watch that scripts


1- Bollinger Bands"
P = ParamField("Price field",-1);
Periods = Param("Periods", 20, 2, 100, 1 );
Width = Param("Width", 2, 0, 10, 0.05 );


2- MACD
trendup = IIf(MACD(12,26) > 0 AND MACD(12,26) > Signal(12,26,9), colorBlue, colorwhite);
trendcolor = IIf(MACD(12,26) < 0 AND MACD(12,26) < Signal(12,26,9), colorRed, trendup);



3- RSI
sp = Param( "RSI Period", 8, 1, 100 );
r = RSI( sp );
RSIup = r > 70;
RSIdown = r < 30;




thx
paresh
 

Similar threads