Thread: ASCTrend system
View Single Post
  #75 (permalink)  
Old 04-30-2006, 06:56 PM
Marphe Marphe is offline
Junior Member
 
Join Date: Apr 2006
Location: Austria
Posts: 20
Marphe is on a distinguished road
I´ve modified ASCTREND EA a little bit to get better results. The greatest would be if someone can and rsi indicator. Often the ASCTREND indicator moves direction but the market is oversold/overbought. And Shiftbar = 1 should be turned to shiftbar = 0 and the position should open after 10 pips are reached.

modification i have done:

extern double lStopLoss = 5000;
extern double sStopLoss = 5000;
extern double lTakeProfit = 10000;
extern double sTakeProfit = 10000;
extern double lTrailingStop = 1000;
extern double sTrailingStop = 1000;
extern int MainTrend = 1440;
extern int ShiftBars = 1;
extern int Risk = 4;
extern bool EnableCloseByASCTrend =true;
extern int Slippage = 5;
extern bool UseHourTrade = false; //for hourly trading
extern int FromHourTrade = 0;
extern int ToHourTrade = 0;
extern bool UseSound = false;
extern string NameFileSound = "alert.wav";
extern double Lots = 1.0;

sorry for my bad englisch. im german
Attached Images
File Type: gif DetailedStatement.gif (5.1 KB, 1518 views)
Attached Files
File Type: htm DetailedStatement.htm (106.2 KB, 399 views)

Last edited by Marphe; 04-30-2006 at 06:59 PM.
Reply With Quote