Plz give me cyborg afl

saivenkat

Well-Known Member
#3
Only few persons close to "khushi" are having it.. Please look for the thread
"Exploring the Exploding stocks" by Khushi. But then she is not active here..
 

sr114

Well-Known Member
#4

hi somebody please give me cyborg afl

thanks
Cyborg by Khusihi - this afl can be replicated by MABIUTS of Kartick Marar ( basically Cyborg is the direct offshoot of MABIUTS - or inspire)

here's the afl :

_SECTION_BEGIN("MABIUTS");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +" {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) ));

Buy=EMA(C,13)>EMA(EMA(C,13),9) AND Cross (C,Peak(C,2,1));
Sell=Cross (EMA(EMA(C,13),9),EMA(C,13));

MYcolor = IIf( EMA(C,13)>EMA(EMA(C,13),9) AND C>Peak(C,2,1), colorGreen, IIf(EMA(C,13)>EMA(EMA(C,13),9) AND C<Peak(C,2,1),colorBlue, colorOrange ));

PlotOHLC( Open, High, Low, Close, "", Mycolor, styleBar |styleThick );

shape = Buy * shapeUpArrow + Sell * shapeDownArrow;
PlotShapes( shape, IIf( Buy, colorGreen, colorRed ),0, IIf( Buy, Low, High ) );

Buy = ExRem(Buy,Sell);
Sell = ExRem(Sell,Buy);

GraphXSpace = 5;
dist = 1.5*ATR(10);

for( i = 0; i < BarCount; i++ )
{
if( Buy ) PlotText( "Buy\n@" + C[ i ], i, L[ i ]-dist, colorGreen );
if( Sell ) PlotText( "Sell\n@" + C[ i ], i, H[ i ]+dist, colorRed);
}


rgds
subroto
 
#5
Hi thanks
sai and subros for replying.
Subro ji
i tried exploring, scan on eod ... but no result. is it a buy sell signaling afl or explorer, i m looking for and EOD scanner like in this post: "Exploring the Exploding stocks" by Khushi00.
kindly can u throw some light on that afl??
many thanks!
 
Last edited:

sr114

Well-Known Member
#6
Hi thanks
sai and subros for replying.
Subro ji
i tried exploring, scan on eod ... but no result. is it a buy sell signaling afl or explorer, i m looking for and EOD scanner like in this post: "Exploring the Exploding stocks" by Khushi00.
kindly can u throw some light on that afl??
many thanks!
so u need the exploration part of the MABIUTS only. earlier was the afl for plotting the chart and the signal and it will not be able to explore.

here the exploration part for u
("MABIUTS");
Buy=EMA(C,13)>EMA(EMA(C,13),9) AND Cross (C,Peak(C,2,1));
Sell=Cross (EMA(EMA(C,13),9),EMA(C,13));

Filter=Buy OR Sell;
SetOption("NoDefaultColumns", True );
AddColumn( DateTime(), "Date", formatDateTime );
AddTextColumn(Name(), "SYMBOL");
//AddTextColumn( FullName(), "Full name", 77 , colorDefault, IIf( Buy, colorGreen, colorRed ) );
AddColumn( IIf( Buy, 66, 83 ), "Signal", formatChar, colorBlack, bkcolor =IIf (Buy,colorBrightGreen, colorOrange ));
rgds
subroto
 

prabhsingh

Well-Known Member
#10
SR,

In case of Exploration,even when sync chart on selection is ticked,charts are not getting reflected in background when we click on symbol.This is working properly for all other explorations AFL.
 

Similar threads