View Single Post
  #10 (permalink)  
Old 11-22-2006, 07:14 PM
Aaragorn's Avatar
Aaragorn Aaragorn is offline
Senior Member
 
Join Date: Jun 2006
Location: USA
Posts: 801
Aaragorn is on a distinguished road
Quote:
Originally Posted by ienaplinsky
I think my brokers (fastbrokers) permits scalping.

But I 've tried patient 2 from 2004 with 90% quality model tf 30 min and I didn't see any operation!
Why? where I wrong?
I don't really know...

try these settings...
all I know is it works for me in backtester..


PHP Code:
//---- User defined indicator parameters
extern int                  MaxTradesAllowed 1;
extern double                     TakeProfit 1000;
extern double                        MaxLots 10// lots smaller than 1 must have "0.x", don't forget the zero left of the decimal
extern double                 LotAccelerator 0.07// degree of lot acceleration
extern double                   TriggerShift 1// zero uses the current forming bar, 1 uses the first completed bar
extern string            Envelope_Parameters "Envelope_Parameters";
extern double                     AveragingP =  10;
extern double                       ma_shift =  0;
extern double                      Deviation =  0.47;
extern string                 ADX_Parameters "ADX_Parameters";
extern double                      ADXPeriod =  10
extern string Dynamic_Trailing_Stop_Settings "Dynamic Trailing Stop Settings";
extern bool               EnableTrailingStop true// Enable Dynamic Trailing Stop
extern double             TrailingStopFactor 1.45;
extern string                  Auto_StopLoss "Auto StopLoss";
extern double                  StopLossIndex 2.5;
extern bool                AutoStopLossIndex true;
extern string                Manual_StopLoss "Manual overrides Auto StopLoss unless = 0";
extern double                 ManualStopLoss 0;  //0 allows for auto stop loss
extern double                      StopLevel 0;
extern string      Additional_User_Functions "Additional User Functions";
extern bool                        UseAlerts false//Gives Audio and pop up Alert when Patient1 enters a position
//extern bool         DynamicTrailManualTrades = false; //Allows Patient1 Dynamic Trailing Stop to Manage Manually Opened Orders on the same currency pair
extern bool                    UseExitMarket false
Reply With Quote