MDunleavy кандидат
Зарегистрирован: 20.05.2010 Сообщения: 244
|
Добавлено: Чт Июл 01, 2010 8:07 am Заголовок сообщения: Expert Advisor e-TrendLineTrader |
цитата |
|
[b:e04972570d]FREE Expert Advisor e-TrendLineTrader Conception:[/b:e04972570d]
GO - Check this out NOW! =>>> [url]http://iticsoftware.com/free-expert-advisor.php[/url]
Open long if a bar closed above a TrendLine.
Open short if a bar closed below a TrendLine.
[b:e04972570d]FREE Expert Advisor e-TrendLineTrader Usage:[/b:e04972570d]
Place N TrendLines on the chart manual.
Change descriptions of these trendlines to LongTrendLineDescr or ShortTrendLineDescr. Apply the expert.
[b:e04972570d]FREE Expert Advisor e-TrendLineTrader Parameters:[/b:e04972570d]
" --- Trade params ---",
extern bool MarketExecution = false;
// Set MarketExecution = true for ECN brokers.
// This means that market orders will be placed without StopLoss and TakeProfit.
// StopLoss and TakeProfit will be added after open.
extern int AccDigits = 5;
// Set 4 for 4-digit quotes; set 5 - for 5-digit quotes
// This is amount of digits after decimal point on EURUSD pair
extern double Lots = 1.0; // lots volume
extern int StopLoss = 100; // StopLoss, pips (0 = no StopLoss)
extern int TakeProfit = 100;// TakeProfit, pips (0 = no StopLoss)
extern int Slippage = 3;// max. allowable slippage value, pips
extern int Magic = 20100620;// some unique orders ID
" --- TrendLine params ---"
extern string LongTrendLineDescr = "LTR";
// Only TrendLines with this description will be processed to open Buy orders
extern string ShortTrendLineDescr = "STR";
// Only TrendLines with this description will be processed to open Sell orders |
|