Jump to content

Developing S/R Expert : Highly Profitable : 99 % Accuracy


harsh124

Recommended Posts

Here's my thought

 

TF 15

 

Buy

====

- Enter when momentum8 > 100

- Enter when Kicker81 turn from red-yellow-blue

- Exit when Kicker35 turn from blue-yellow-red

 

Sell

====

- Enter when momentum8 < 100

- Enter when Kicker81 turn from blue-yellow-red

- Exit when Kicker35 turn from red-yellow-blue

 

 

Umm -> Some Corrections

 

Trade Rules :-

 

Go Long When

 

1> Kicker Is Blue

2> Price Breaks the Resistance Level

 

Go Short When

 

1> Kicker is Red

2> Price Breaks The Support Levels

 

Take Profits & Trading Scheme :-

 

=> Take two trades as soon as you find a signal

 

Take Profits :-

 

=> For the First Trade :- Give it a solid Take Profit of 10 Pips

=> For the Second Trade :- Let it ride the trend till the kicker Indicator changes its colour. And ** Always keep a note to keep a TRAILING STOP of 10 pips, So if there is a reversal -> You'll be safe.

 

Stop Losses :-

 

=> I am still researching for possible based Stop loss entries but I am not able to give much time to find a Fixed Value

=> And If stop losses are hit too - I want to make the trades as safe and reduce the losses to the highest extent.

=> If anyone generous enough could invest some time here for that - I'll be glad

 

Trailing Stops :-

 

=> Let first trade append to system rules of 10 Pips.

=> Let Second Trade Ride the trend with a Trailing stop of 10 Pips & Close the trade as soon as kicker changes colour.

 

New Experiments :-

=> I will try to add some new Indicators which can give better quality signals!

 

I think I have made myself clear, However any more questions , Doubts Issues - Feel Free to contact me!

 

Harsh124

Link to comment
Share on other sites

  • Replies 280
  • Created
  • Last Reply

Top Posters In This Topic

Here's my logic in TF M15

==================

 

RefreshRates();

double val1now = iCustom(Symbol(), PERIOD_M15, "Kicker", 0, 81, 1, 1); //buy buffer

double val2now = iCustom(Symbol(), PERIOD_M15, "Kicker", 0, 81, 2, 1); //sell buffer

 

double val1b4 = iCustom(Symbol(), PERIOD_M15, "Kicker", 0, 81, 1, 2); //buy buffer

double val2b4 = iCustom(Symbol(), PERIOD_M15, "Kicker", 0, 81, 2, 2); //sell buffer

double mome = iMomentum(Symbol(), PERIOD_M15, 8, 0, 0);

 

double val1_small = iCustom(Symbol(), PERIOD_M15, "Kicker", 0, 35, 1, 1); //buy buffer

double val2_small = iCustom(Symbol(), PERIOD_M15, "Kicker", 0, 35, 2, 1); //sell buffer

 

double roi_resistance = iCustom(Symbol(), PERIOD_M15, "ROIAlert", 1, 1);

double roi_support = iCustom(Symbol(), PERIOD_M15, "ROIAlert", 0, 1);

 

 

Comment("\n\n\n\n\n\n\n\n\n\n\n\n"+"val1now ="+ val1now

+ "\n"

+"val2now ="+ val2now

+ "\n"

+"val1b4 ="+ val1b4

+ "\n"

+"val2b4 ="+ val2b4

+ "\n"

+"Resist ="+roi_resistance

+ "\n"

+"Support ="+roi_support

+ "\n"

+ "NO TRADE "+ Symbol()+ "-"+ Period());

 

if ( val2now == val1b4 || val1now == val2b4 )

{

Comment("\n\n\n\n\n\n\n\n\n\n\n\n"+"val1now ="+ val1now

+ "\n"

+"val2now ="+ val2now

+ "\n"

+"val1b4 ="+ val1b4

+ "\n"

+"val2b4 ="+ val2b4

+ "\n"

+"Resist ="+roi_resistance

+ "\n"

+"Support ="+roi_support

+ "\n"

+ "!!!!!!! Yellow Zone !!!!!!!! "+ Symbol()+ "-"+ Period());

}

 

// look at kicker values

if ( val1now >100000 && val1b4 >100000 && val2b4 > val2now && mome < 100 && val2now > val2_small && val2now <=roi_support )

{

Comment("\n\n\n\n\n\n\n\n\n\n\n\n"+"val1now ="+ val1now

+ "\n"

+"val2now ="+ val2now

+ "\n"

+"val1b4 ="+ val1b4

+ "\n"

+"val2b4 ="+ val2b4

+ "\n"

+"Resist ="+roi_resistance

+ "\n"

+"Support ="+roi_support

+ "\n"

+"Kicker Sell Signal "+ Symbol()+ "-"+ Period());

SendMail("Kicker Sell "+ Symbol()+ "-"+ Period(),"");

 

}

if (val2now >100000 && val2b4 >100000 && val1b4 < val1now && mome > 100 && val1now < val1_small && val1now >= roi_resistance)

{

Comment("\n\n\n\n\n\n\n\n\n\n\n\n"+"val1now ="+ val1now

+ "\n"

+"val2now ="+ val2now

+ "\n"

+"val1b4 ="+ val1b4

+ "\n"

+"val2b4 ="+ val2b4

+ "\n"

+"Resist ="+roi_resistance

+ "\n"

+"Support ="+roi_support

+ "\n"

+"Kicker Buy Signal "+ Symbol()+ "-"+ Period());

SendMail("Kicker Buy "+ Symbol()+ "-"+ Period(),"");

}

 

return (0);

Link to comment
Share on other sites

  • 3 weeks later...
  • 4 weeks later...
  • 2 months later...

about kicker indicator and support and resistence (barry)

 

 

I'm using these two indicators in the demo, to touch me

seem interesting.

 

I would like to better understand how to use them .. of first impact

thought to be used as supports and how

resistance and not vice versa (breakout of these and came on the strength or weakness).

 

What time frame do you think is the best? However

I was really surprised to see how it is

behaved in the past. Central heating and suppport them

always! Of course it remains to establish the standard of entry!

Link to comment
Share on other sites

Here is a free SR inidcator, which dynamically counts SR levels from close values of the bars. I've also looked for this indicator for a long time, this seems good, but needs testing how accurate are these. I think it is a good idea to mix it with fibos.

http://codebase.mql4.com/6376

http://content.screencast.com/users/konorti/folders/mix/media/8fe0f3f5-6b6c-4af3-b211-e79d907743c0/00000014.png

 

Hello all... just going through the thread... wondering if anyone has this S&R indicator posted by konorti from post #101... the link is dead... would appreciate it if someone could post another link...

 

Also curious if anyone is trading Harsh's system MANUALLY, and what results?? ... since it seems a successful EA was never completed... many thanks..

Link to comment
Share on other sites

  • 2 weeks later...
  • 4 months later...
  • 4 weeks later...
  • 8 months later...
Hello,

 

I'vnt posted in this thread since long;

 

Using a little changed rules, I've broken the 150k mark myself. :)

 

Please refrain from asking me the rules, I've given you the ore; Refine the gold for yourself.

 

Good Luck. :)

 

Harsh124

 

Hello harsh,

 

Glad to see you back with regarding to this thread.

I have spend a lot of time testing youre system, but i could not get it profitable in the long run.

Afther all i still believed it has possibilitys.

i do not understand why you don't want to explaine youre findings, but i gues you have youre reason

for that.

 

Congrats with the succes.

 

K.R.

Link to comment
Share on other sites

Hello all... just going through the thread... wondering if anyone has this S&R indicator posted by konorti from post #101... the link is dead... would appreciate it if someone could post another link...

 

Also curious if anyone is trading Harsh's system MANUALLY, and what results?? ... since it seems a successful EA was never completed... many thanks..

 

I would be interested in this indie if anyone has it.....Thanks.

Link to comment
Share on other sites

Please share your system a k a "the ore",I will refine it myself searching for the trading gold,Harsh124! :D

 

Look at post 227 ...it has some decent coding. There are other posts that describe the last manual rules too 165 (rio's EA) 168-170(manual rules). Hope this helps...also googled the kicker signals which produced a lot of decent reading material about the piercing pattern. Later.

 

 

P.S. But don't get me wrong, I too would like Harsh124 to share too....

Link to comment
Share on other sites

Long signal:

1. Kicker( W ): (Value W variable user input)

A. slope of X or greater (X variable user input)

B. positive slope maximum of Y bars previously (Y variable user input)

C. Midpoint of bar > Kicker - Z distance (Z variable user input)

2. Momentum

A. On/off switch for both long and short signals

B. Momentum period of M for both long and short signals (M variable user input)

C. Momentum > 100 + N (N variable user input)

3. MTF MACD

A. On/off switch for both long and short signals

B. Period P variable input

 

Short signal:

1. Kicker( W ):

A. slope of X or less (X variable user input, negative of 1. A. long above)

B. negative slope for maximum of Y bars previously (Y variable user input, same Y for long signal)

C. Midpoint of bar < Kicker + Z distance (Z variable user input, negative of 1.B. above)

2. Momentum

A. On/off switch for both long and short signals as 2. A. above

B. Momentum period of M for both long and short signals (M variable user input)

C. Momentum < 100 - N (N as in 2. C. above)

3. MTF MACD

A. On/off switch for both long and short signals

B. Period P (same P value as above, variable input)

 

Alert on/off switch when conditions above met

 

 

(please post latest code here)

Link to comment
Share on other sites

Hello,

 

I will try to upload the indies asap. :)

 

Secondly, the only reason I've not posted the updated rules here is that it is the outcome of my hardwork and the late working nights for months before arriving to conclusions. Though in my best of intentions, I'll not devoid anyone of the tools I use, I'll relink the indicators in a short period.

 

Best of luck,

 

And Thanks,

 

Harsh124

Please Dont Forget the Kudos Coming! :-bd
Link to comment
Share on other sites

Hello,

 

I will try to upload the indies asap. :)

 

Secondly, the only reason I've not posted the updated rules here is that it is the outcome of my hardwork and the late working nights for months before arriving to conclusions. Though in my best of intentions, I'll not devoid anyone of the tools I use, I'll relink the indicators in a short period.

 

Best of luck,

 

And Thanks,

 

Harsh124

 

 

 

Thanks Harsh124 for your generosity. I am looking forward to your new indicators.

Link to comment
Share on other sites

Hello,

 

I'vnt posted in this thread since long;

 

Using a little changed rules, I've broken the 150k mark myself. :)

 

Please refrain from asking me the rules, I've given you the ore; Refine the gold for yourself.

Good Luck. :)

 

Harsh124

 

Hello,

 

I will try to upload the indies asap. :)

 

Secondly, the only reason I've not posted the updated rules here is that it is the outcome of my hardwork and the late working nights for months before arriving to conclusions. Though in my best of intentions, I'll not devoid anyone of the tools I use, I'll relink the indicators in a short period. Best of luck,

 

And Thanks,

 

Harsh124

 

Harsh,

If i am not mistaking, you post only the indicators, but not the rules ???

 

K.R.

Ikke

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...