Dynamic trader trading system explained ... immediate help needed to develope fomulla

Re: Dynamic trader trading system explained ... immediate help needed to develope fom

Dear nagarjuna ji it is not showing entry price stoploss and exit price and not showing buy sell arrow i am using 5 minut timeframe pls help me
 

ocil

Well-Known Member
Re: Dynamic trader trading system explained ... immediate help needed to develope fom

Where is the AFL? If possible pls send me on wecnd @ indiatimes.com
 
Re: Dynamic trader trading system explained ... immediate help needed to develope fom

Seniors,

Please help us on this.
please let us know where to download this af from ?

Thanks,
Mak
 
Re: Dynamic trader trading system explained ... immediate help needed to develope fom

Excellent thread, but cant find AFL or attachments? Please can somebody help
 
Re: Dynamic trader trading system explained ... immediate help needed to develope fom

Can anyone please provide me this afl ?
[email protected]

I need this for study purpose...

Here is the code -


_SECTION_BEGIN("DT Oscillator");

PeriodRSI= Param("PeriodRSI", 13, 1, 250, 1);
PeriodStoch=Param("PeriodStoch", 8, 1, 250, 1);
MAType=Param("MAType", 1, 1, 2, 1);
PeriodSK=Param("PeriodSK", 5, 1, 250, 1);
PeriodSD=Param("PeriodSD", 3, 1, 250, 1);
Upper=Param("Upper", 70, 50, 100, 1);
Lower=Param("Lower", 30, 0, 50, 1);


StoRSI= 100*(( RSI( PeriodRSI) - LLV( RSI( PeriodRSI ) , PeriodStoch ) ) / ( ( HHV( RSI( PeriodRSI) , PeriodStoch ) ) - LLV(RSI( PeriodRSI ), PeriodStoch ) ) );

if(MAType==1)
{
SK=MA(StoRSI,PeriodSK);
SD=MA(SK,PeriodSD);
}

if(MAType==2)
{
SK=EMA(StoRSI,PeriodSK);
SD=EMA(SK,PeriodSD);
}

Plot(SK,"DTOscSK",ParamColor( "ColorSK", colorBlue ),styleLine);
Plot(SD,"DTOscSD",ParamColor( "ColorSD", colorBlack ),styleDashed);
Plot(0,"ZeroLine",ParamColor( "ColorZero", colorBlack ),styleLine);
Plot(Upper,"Upper",ParamColor( "ColorUpper", colorRed ),styleLine);
Plot(Lower,"Lower",ParamColor( "ColorLower", colorGreen ),styleLine);
_SECTION_END();
 
Re: Dynamic trader trading system explained ... immediate help needed to develope fom

Thanks but this isnt the DT Oscillator developed as part of this thread. The DT Oscillator you have posted has 70 and 30 upper and lower lines whereas the DT Oscillator which is part of this thread is shown on page 10 of this thread in a screenshot and was posted on 28th July 2010, 10:04 AM by Nagarjuna13 who wrote the AFL.

Please if anybody has the AFL Nagarjuna13 developed please post. If you look at the performance of the indicator developed by Nagarjuna13, you will see why it is worth while getting hold of. Thanks!
 

Nehal_s143

Well-Known Member
Re: Dynamic trader trading system explained ... immediate help needed to develope fom

Thanks for code, but this dont seems to one developed in this post, this may be base version.

Please give download link or post afl code here so that members in future can also download the afl

Regards

Nehal

Here is the code -


_SECTION_BEGIN("DT Oscillator");

PeriodRSI= Param("PeriodRSI", 13, 1, 250, 1);
PeriodStoch=Param("PeriodStoch", 8, 1, 250, 1);
MAType=Param("MAType", 1, 1, 2, 1);
PeriodSK=Param("PeriodSK", 5, 1, 250, 1);
PeriodSD=Param("PeriodSD", 3, 1, 250, 1);
Upper=Param("Upper", 70, 50, 100, 1);
Lower=Param("Lower", 30, 0, 50, 1);


StoRSI= 100*(( RSI( PeriodRSI) - LLV( RSI( PeriodRSI ) , PeriodStoch ) ) / ( ( HHV( RSI( PeriodRSI) , PeriodStoch ) ) - LLV(RSI( PeriodRSI ), PeriodStoch ) ) );

if(MAType==1)
{
SK=MA(StoRSI,PeriodSK);
SD=MA(SK,PeriodSD);
}

if(MAType==2)
{
SK=EMA(StoRSI,PeriodSK);
SD=EMA(SK,PeriodSD);
}

Plot(SK,"DTOscSK",ParamColor( "ColorSK", colorBlue ),styleLine);
Plot(SD,"DTOscSD",ParamColor( "ColorSD", colorBlack ),styleDashed);
Plot(0,"ZeroLine",ParamColor( "ColorZero", colorBlack ),styleLine);
Plot(Upper,"Upper",ParamColor( "ColorUpper", colorRed ),styleLine);
Plot(Lower,"Lower",ParamColor( "ColorLower", colorGreen ),styleLine);
_SECTION_END();
 

Nehal_s143

Well-Known Member
Re: Dynamic trader trading system explained ... immediate help needed to develope fom

I found this code on net, but this one has only explore command, nothing has been plotted on chart, hence cant say if this is the same developed in this thread or something esle.....

_SECTION_BEGIN("DTO");
//Dynamic Trader Oscillator and Dual-Timeframe Momentum Reversal Scan for Amibroker
//Note: If the plot doesn't match the scan results, check the settings for the scan to ensure they are the same as the Plot.

//Define Stochastics Indicator on Weekly Timeframe for 13-period:
TimeFrameSet( inWeekly );
WkStochK13 = StochK( 13, 3 );
WkStochD13 = StochD( 13, 3, 3 );
TimeFrameRestore();

//Define Stochastics Indicator on Weekly Timeframe for 8-period:
TimeFrameSet( inWeekly );
WkStochK8 = StochK( 8, 3 );
WkStochD8 = StochD( 8, 3, 3 );
TimeFrameRestore();


//Define DTOsc on Daily Timeframe:
PeriodRSI = Param( "PeriodRSI", 8, 1, 250, 1 );
PeriodStoch = Param( "PeriodStoch", 5, 1, 250, 1 );
PeriodSK = Param( "PeriodSK", 3, 1, 250, 1 );
PeriodSD = Param( "PeriodSD", 3, 1
, 250, 1 );
Upper = Param( "Upper", 80, 50, 100, 1 );
Lower = Param( "Lower", 20, 0, 50, 1 );
StoRSI = 100 * ( ( RSI( PeriodRSI ) - LLV( RSI( PeriodRSI ) , PeriodStoch )
) / ( (
HHV( RSI( PeriodRSI ) , PeriodStoch ) ) - LLV( RSI( PeriodRSI ),
PeriodStoch ) ) );
SK = MA( StoRSI, PeriodSK );
SD = MA( SK, PeriodSD );


//Define DTOsc on Weekly Timeframe:
TimeFrameSet( inWeekly );
PeriodRSI = Param( "PeriodRSI", 8, 1, 250, 1 );
PeriodStoch = Param( "PeriodStoch", 5, 1, 250, 1 );
PeriodSK = Param( "PeriodSK", 3, 1, 250, 1 );
PeriodSD = Param( "PeriodSD", 3, 1, 250, 1 );
Upper = Param( "Upper", 80, 50, 100, 1 );
Lower = Param( "Lower", 20, 0, 50, 1 );
StoRSI = 100 * ( ( RSI( PeriodRSI ) - LLV( RSI( PeriodRSI ) , PeriodStoch )
) / ( (
HHV( RSI( PeriodRSI ) , PeriodStoch ) ) - LLV( RSI( PeriodRSI ),
PeriodStoch ) ) );
WeeklySK = MA( StoRSI, PeriodSK );
WeeklySD = MA( WeeklySK, PeriodSD );
TimeFrameRestore();

//Define Screen for Long Setups:
CriteriaLong =
MA( V, 60 ) > 20000 AND
Ref( V, -1 ) >= 10000 AND
C >= 8 AND
L > Ref(
L, -1 ) AND
L > Ref( L, -2 ) AND
Ref( L, -1 ) > Ref( L, -2 ) AND
Ref( L, -2 ) < Ref( L, -3 ) AND
L > Ref( L, -1 ) AND
Ref( L, -1 ) > Ref( L, -2 ) AND
Ref( L, -2 ) < Ref( L, -3 );

//Define My Additional Screen Criteria for Short Setups:
NeilCriteriaLong =
CriteriaLong AND
(
SK < 60 AND
SD < 60 AND
Cross( SK, SD )
);


//Define Screen for Short Setups:
CriteriaShort =
MA( V, 60 ) > 20000 AND
C >= 8 AND
Ref( H, -1 ) < Ref( H, -2 ) AND
Ref( H, -2 ) > Ref( H, -3 ) AND
H < Ref( H, -2 ) AND
Ref( L, -2 ) > Ref( L, -3 ) AND
Ref( V, -1 ) >= 10000 AND
C >= Ref( L, -1 ) AND
Ref( H, -2 ) > Ref( H, -4 ) AND
Ref( H, -2 ) > Ref( H, -5 ) AND
Ref( H, -2 ) > Ref( H, -6 ) AND
H < Ref( H, -1 ) AND
Ref( L, -1 ) > L
;

//Define My Additional Screen Criteria for Short Setups:
NeilCriteriaShort =
CriteriaShort AND
(
SK > 40 AND
SD > 40 AND
Cross( SD, SK )
);

//Define Buy and Sell Signals:
Buy = CriteriaLong;
Sell = 0;


//Define Exploration:
Filter = CriteriaLong OR CriteriaShort;
AddColumn( CriteriaLong, "Long Reversal", 2, colorBlack, IIf( CriteriaLong, colorGreen, colorWhite ), 100 );
AddColumn( NeilCriteriaLong, "BullX", 2, colorBlack, IIf( NeilCriteriaLong, colorBrightGreen, colorWhite ), 30 );
AddColumn( CriteriaShort, "Short Reversal", 2, colorBlack, IIf( CriteriaShort, colorDarkRed, colorWhite ), 100 );
AddColumn( NeilCriteriaShort, " BearX", 2, colorBlack, IIf( NeilCriteriaShort, colorRed, colorWhite ), 30 );
AddTextColumn ( WriteIf( NeilCriteriaLong, "Reversal + Cross + OB", "Reversal" ), Interval( 2 ), 3.0, colorWhite,
IIf( NeilCriteriaLong, colorBrightGreen, IIf( CriteriaLong, colorGreen, colorWhite ) ), 130 );
AddTextColumn ( WriteIf( NeilCriteriaShort, "Reversal + Cross + OS", "Reversal" ), Interval( 2 ), 3.0, colorWhite,
IIf( NeilCriteriaShort, colorRed, IIf( CriteriaShort, colorDarkRed, colorWhite ) ), 130 );

_SECTION_END();
 

Similar threads