PipMaker v1 - Price action based EA - page 64

 
duyduy:
If I don't mistake. Pipmaker V9.1 in the 1st post have no session target

Ok thanks but what were the changes in "PipMakerV5aNeo_Enhanced_V2_mod4c" compared to "9.1"?

Can you post the differences please. Which version is the newest? Thanks

 
matrixebiz:
Ok thanks but what were the changes in "PipMakerV5aNeo_Enhanced_V2_mod4c" compared to "9.1"? Can you post the differences please. Which version is the newest? Thanks

in V9,1 there are no Session Target, max open buy /sell and no SL

 

What is all this for in v2.1?

extern int Length=10; // Period of Fisher Transform

extern int Price=4; // 0-Close;1-Open;2-High;3-Low;4-median;5-typical;6-weighted

extern int CalcBars=100; // Number of Last Bars

extern int NumBars=0; // Number of Bars on the Chart

extern int Offset=70; // Offset for lines

extern int TF=60;

extern int sNL_TF = 60;

extern int sPrice = 0; //Apply to Price(0-Close;1-Open;2-High;3-Low;4-Median price;5-Typical price;6-Weighted Close)

extern int sLength = 9; //Period of NonLagMA

int sDisplace = 0; //DispLace or Shift

extern double sPctFilter = 0; //Dynamic filter in decimal

int sColor = 1; //Switch of Color mode (1-color)

int sColorBarBack = 0; //Bar back for color mode

extern double sDeviation = 0; //Up/down deviation

extern int sShift = 1;

 

Hi...

Just want to say hi.....I just blew up my demo acc using pip makerV4....luckily demo acc..

 

Trading on EUR/JPY and notice no Sells all week ?? is Mod4c doing sells for you guys on different currencies?

Aren't we supposed to have like One Sell for every Two Buys or Visa-Versa? To weigh out the loser trades. Am I supposed to enable Multiplier for that to happen? Without Multiplier is it like pure Martingale? I don't want Martingale, it kills accounts. What to I set to have it trade offset trades? I have 6 buys right now which isn't good if trend continues in the wrong direction. I was expecting some counter trade to open ??

I have;

TradeShort = true

TradeLong = true

Is this bad? How do I know what to have true and what to have false? Should I set both false to place counter trade if trend goes against me?

Thanks

Files:
pm_4c.jpg  198 kb
 

@matrixbiz

Could you show the setting parameter?

Multiplier is not like a martingale. It is a MathPower function.

if (Ask >= HighestBuy + (TrendSpacing * Point))

{

if (Multiplier == 1)

Lots = NormalizeDouble(LotSize * MathPow(LotIncrement, BuyOrders), lotPrecision);

else

Lots = NormalizeDouble(LotSize + (LotIncrement * BuyOrders), lotPrecision);

}
 

Here you go; Maybe it is just that currency?

TradeShort=1

TradeLong=1

UseDPO=1

UseSniper=1

LotSize=0.01000000

LotIncrement=0.01000000

Multiplier=0.00000000

ProfitTarget=3

OpenOnTick=1

Spacing=8

TrendSpacing=5

CounterTrendMultiplier=2.00000000

CloseDelay=91

CeaseTrading=0

PasueTrading=Pause Trading at Timeinterval

StartTime=0

EndTime=0

QuitTrading=Quit Trading at Time

endDayHourMinute=0

RightSideLabel=0

SessionTarget=500

MaximumBuyOrders=10

MaximumSellOrders=10

SLTotalinDollar=15.00000000

PlacingTime=1167609600

These settings worked on a different currency;

TradeShort=1

TradeLong=1

UseDPO=1

UseSniper=1

LotSize=0.01000000

LotIncrement=0.01000000

Multiplier=0.00000000

ProfitTarget=3

OpenOnTick=1

Spacing=4

TrendSpacing=1000

CounterTrendMultiplier=1.00000000

CloseDelay=0

CeaseTrading=0

PasueTrading=Pause Trading at Timeinterval

StartTime=0

EndTime=0

QuitTrading=Quit Trading at Time

endDayHourMinute=0

RightSideLabel=1

SessionTarget=500

MaximumBuyOrders=10

MaximumSellOrders=10

SLTotalinDollar=15.00000000

PlacingTime=1198368000

 
matrixebiz:
Here you go; Maybe it is just that currency?

TradeShort=1

TradeLong=1

UseDPO=1

UseSniper=1

These settings worked on a different currency;

TradeShort=1

TradeLong=1

UseDPO=1

UseSniper=1

You are using DPO and FX Snipper as the indicator to find the trend direction. Of course, EA will open position according to the indicator. That's why I mentioned that we has developed this PipMaker as our assistant and semi automatic mode.

To disable the indicator, change the value to "0".

Please read my previous post about the explanation of the parameter before using this EA. I think thing like this make other great coders fly from this forum

 
saleh derakhshan:
hi all - checkit this acc (pipmaker 2a)

Login : 1756147

Investor : f8apaia

Interbank FX

Here's the end result, lol

end_result.zip

Files:
 
tiger_wong:
Hi forum,

due to a lot of PM that I have received about this EA, I decide to explain a bit about the parameters. I hope this will help anyone who just read n try to use this EA.

UseDPO = true; // Trades long if 30Min-LWMA is above daily open and short if below (idea from OnlyPivot thread)

UseSniper = true; // Trades long if above 0, opposite for short depend on FX Sniper T3 CCI indicator

do you mean that I have to attach the two indicators first in order this EA to work? how about the tf setting?