| New signals service! | |
|
|||||||
| Register in Forex TSD! | |
|
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time). Click here to register and get more information |
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
To: Matrixebiz
Quote:
You are welcome. Big Be Last edited by Big Be; 05-28-2008 at 03:50 AM. |
|
|||
|
Fxpro,ask
hi all.. i juz want to ask about how to configure lots EA in FxPro..
i confused because it has 6 digits (1 digit extra) i fixed the S/L and T/P but i cant change the lot.. always 0.4 per trade.. even i change it to 0.1 or 0.3 i used 10points 3 EA.. Please Help Me.. email me at hansen_hardrocker@yahoo.co.id or can PM please.. cheerz all.. |
|
|||
|
Ask_change Lot (fxpro)
Fxpro,ask
hi all.. i juz want to ask about how to configure lots EA in FxPro.. i confused because it has 6 digits (1 digit extra) i fixed the S/L and T/P but i cant change the lot.. always 0.4 per trade.. even i change it to 0.1 or 0.3 i used 10points 3 EA.. Please Help Me.. email me at hansen_hardrocker@yahoo.co.id or can PM please.. cheerz all.. |
|
||||
|
i want it too.please send me at omidchart@yahoo.com
|
|
|||
|
Can You Change This EA?
Hello programmers,
I have this EA that places stop orders above and below current price. What I need is an EA that will place limit orders instead of stop orders above and below current price. Can you change this EA to do just that while keeping all of the parameters the same? Thanks in advance, Paul |
|
|||
|
How to make an indicator work on another indicator?
If you drop the basic moving average (included as indicator in MT4) on another indicator, it is possible to calculate the MA of the indicator, but how do you change a custom indicator in such a way that it's possible to drop it on another indicator?
__________________
tensigma.blogspot.com |
|
|||
|
#property copyright "沈欣"
#property link "shenxinon@126.com" #property indicator_separate_window #property indicator_buffers 1 #property indicator_color1 SteelBlue //#property indicator_minimum -0.01 //#property indicator_maximum 0.01 //---- input parameters extern int SMA1=12; extern int SMA2=72; //---- buffers double ExtMapBuffer1[]; //---- 自定义区 //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { //---- indicators SetIndexStyle(0,DRAW_LINE); SetIndexBuffer(0,ExtMapBuffer1); string sName="RAVI indicator"; IndicatorShortName("RAVI indicator("+SMA1+","+SMA2+")"); //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator deinitialization function | //+------------------------------------------------------------------+ int deinit() { //---- //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int start() { int counted_bars=IndicatorCounted(); //---- if(counted_bars<0) return(-1);// if there is a error then exit and return -1 if(counted_bars>0) counted_bars--; int pos = Bars-counted_bars; double sma1,sma2,r; while(pos>=0) { sma1=iMA(NULL,0,SMA1,0,MODE_SMA,PRICE_CLOSE,pos); sma2=iMA(NULL,0,SMA2,0,MODE_SMA,PRICE_CLOSE,pos); r=((sma1-sma2)/sma2)*10000; //Alert("r=",r); ExtMapBuffer1[pos]=r; pos--; } return(0); |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to code this? | iscuba11 | Metatrader 4 mql 4 - Development course | 1 | 08-03-2007 04:22 PM |