can anybody rectify this pop-up window afl

#1
guys i am looking for pop-window afl which i can add to my afl ..which pops up a window with share name.........once...on buy-sell genrated by my afl on compltd bar basis.......... i found this afl..but its not complete it shows balnk pop-windows... plzz help



PopupWindow("Buy : " + FullName(),"Alert", 5, 640*mtRandom(), 480*mtRandom());
PopupWindow("Sell : " + FullName(),"Alert", 5, 640*mtRandom(), 480*mtRandom());
 
Last edited:
#2
guys i am looking for pop-window afl which i can add to my afl ..which pops up a window with share name.........once...on buy-sell genrated by my afl on compltd bar basis.......... i found this afl..but its not complete it shows balnk pop-windows... plzz help



PopupWindow("Buy : " + FullName(),"Alert", 5, 640*mtRandom(), 480*mtRandom());
PopupWindow("Sell : " + FullName(),"Alert", 5, 640*mtRandom(), 480*mtRandom());
I give below following afl

ma 3 15 cross alert.afl

//---------
a=EMA(C,3) ;
b=EMA(C,15) ;


Buy = Cross(a,b) ;
Sell = Cross(b,a) ;
//Short = Sell;
//Cover = Buy;

AlertIf( Buy, "", "MA cross BUY", 1,1+2 );

AlertIf( Sell, "", "MA cross SELL", 2 ,1+2);

//PlotShapes( shapeUpArrow*Buy, colorBlue, 0, L, -10 );
//PlotShapes( shapeDownArrow*Sell, colorRed, 0, H, -10 );

//-------------


You have to use it through automatic analyses and set settings. Further, you have to enable view--alert output---------wherein out put will come and also it gives sound.


Thanks
 
Last edited:
#3
I give below following afl

ma 3 15 cross alert.afl

//---------
a=EMA(C,3) ;
b=EMA(C,15) ;


Buy = Cross(a,b) ;
Sell = Cross(b,a) ;
//Short = Sell;
//Cover = Buy;

AlertIf( Buy, "", "MA cross BUY", 1,1+2 );

AlertIf( Sell, "", "MA cross SELL", 2 ,1+2);

//PlotShapes( shapeUpArrow*Buy, colorBlue, 0, L, -10 );
//PlotShapes( shapeDownArrow*Sell, colorRed, 0, H, -10 );

//-------------


You have to use it through automatic analyses and set settings. Further, you have to enable view--alert output---------wherein out put will come and also it gives sound.


Thanks



hey thnks a lot for such a promp reply........dude.. i have afl..i want alerts for my afl......shal i need to add just these 2 lines on my afl...to get alerts ?


AlertIf( Buy, 1,1+2 );

AlertIf( Sell, "", 2 ,1+2);
 
#4
plz help i m looking for pop window formula which i cna add to my formulae...........so whenever i use it....a pop window opens with buy-sell share name.... on he basis buy-sell signals generated by my formula and on compltd bars only.... like ..i have 15 stks in ....the formula shuld anaysle all....and when evr any signal comes on any stk ...it pops up a awindow..... plz helpppppppp
 
Last edited:
#5
hey thnks a lot for such a promp reply........dude.. i have afl..i want alerts for my afl......shal i need to add just these 2 lines on my afl...to get alerts ?


AlertIf( Buy, 1,1+2 );

AlertIf( Sell, "", 2 ,1+2);

You may use following two lines in your formula



AlertIf( Buy, "", "", 1,1+2 );

AlertIf( Sell, "", "", 2 ,1+2);



Thanks
 
#6
You may use following two lines in your formula



AlertIf( Buy, "", "", 1,1+2 );

AlertIf( Sell, "", "", 2 ,1+2);



Thanks


thnks bro....ur lines some wht helping me..... byt yaar...its repeating the same signals again and again.........which results in many many alerts....which defetas te purpose...so plz tell how to conyrol that so that it gives alert only once... also it shows both buy-sell signal on alert window ... why so ? why both ? it should give eithr buy or sell na ?
 

Similar threads