This is an Expl AFL
_SECTION_BEGIN("Expl - Intra");
P = ParamField("Price field To Use",-1);
Periods = Param("EMA Periods", 15, 2, 300, 1, 10 );
change = Param("% change For Zig",5,0.1,25,0.1);
zthreshold = Param("Zig Threshold",0.025,0.1,100);
vol=Param("Volume Breakout at ", 100000,10000,1000000);
zz = Zig(C,Change);
Cond1= C > EMA(C,20);
Cond2 = V >vol;
Cond3 = zthreshold > zz;
Buy = Cond1 AND Cond2 AND Cond3;
Sell= O;
if( Buy = True)
{
Filter=1;
}
else
{
Filter=0;
};
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
AddColumn( Close, "Close" );
AddColumn( Volume, "Volume" );
AddColumn( zz, "Zig Value" );
_SECTION_END();
**********************************************
The attached AFL was got developed for the conditions:
The conditions which I gave for its Development were:-
a. The Zig-Zag 1.5 up
b. Either one conditions of i or ii below:-
i. The Rise in Volume in given time frame is 1000000 (one million) or above -------------------- (volume be a variable parameter).
Or
ii. The value in creased in given time frame based on Typical price is 1,00,00,000 (Ten million) or above -------------------- (value be a variable parameter).
Or both the conditions met, then also OK
************************************************** **********
Sir,
I want that in addition to above conditions the AFL be modified as below:
Sir, Now, I intend that the following amendment to it, if possible may be made:-
1. The Zig-Zag may be adjusted UP or Down at my choice.
2. No change in Volume and Value conditions.
3. The close price of candles in which condition (i) or (ii) or both were met should be more then open price of that candles
4. Minimum Time frame for exploration, should be 1min, & adjustable to 5min, 7min, 10min, 15min etc may be added/ inserted.
5. Value to be calculated on Typical Price.
6. While doing exploration in automatic analysis, the reproduction of Explore Result in the given format
_SECTION_BEGIN("Expl - Intra");
P = ParamField("Price field To Use",-1);
Periods = Param("EMA Periods", 15, 2, 300, 1, 10 );
change = Param("% change For Zig",5,0.1,25,0.1);
zthreshold = Param("Zig Threshold",0.025,0.1,100);
vol=Param("Volume Breakout at ", 100000,10000,1000000);
zz = Zig(C,Change);
Cond1= C > EMA(C,20);
Cond2 = V >vol;
Cond3 = zthreshold > zz;
Buy = Cond1 AND Cond2 AND Cond3;
Sell= O;
if( Buy = True)
{
Filter=1;
}
else
{
Filter=0;
};
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
AddColumn( Close, "Close" );
AddColumn( Volume, "Volume" );
AddColumn( zz, "Zig Value" );
_SECTION_END();
**********************************************
The attached AFL was got developed for the conditions:
The conditions which I gave for its Development were:-
a. The Zig-Zag 1.5 up
b. Either one conditions of i or ii below:-
i. The Rise in Volume in given time frame is 1000000 (one million) or above -------------------- (volume be a variable parameter).
Or
ii. The value in creased in given time frame based on Typical price is 1,00,00,000 (Ten million) or above -------------------- (value be a variable parameter).
Or both the conditions met, then also OK
************************************************** **********
Sir,
I want that in addition to above conditions the AFL be modified as below:
Sir, Now, I intend that the following amendment to it, if possible may be made:-
1. The Zig-Zag may be adjusted UP or Down at my choice.
2. No change in Volume and Value conditions.
3. The close price of candles in which condition (i) or (ii) or both were met should be more then open price of that candles
4. Minimum Time frame for exploration, should be 1min, & adjustable to 5min, 7min, 10min, 15min etc may be added/ inserted.
5. Value to be calculated on Typical Price.
6. While doing exploration in automatic analysis, the reproduction of Explore Result in the given format