The ideas that I trade by:

free & uncensored discussion arena for TheRumpledOne

Moderator: moderators

User avatar
MightyOne
rank: 5000+ posts
rank: 5000+ posts
Posts: 6055
Joined: Wed Dec 10, 2008 6:33 pm
Reputation: 560
Gender: Male

M1 CHARTS

Postby MightyOne » Tue Aug 23, 2016 5:12 pm

LINE 182: if (period == PERIOD_M1){BIG = 0.60;}else

As for the account balance setting, just move it up every time your account increases by 12.25%:

10,000
11,225
12,600
14,143
15,876
17,820
20,000

To targets :smt075 not through targets :smt065

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

User avatar
prochargedmopar
rank: 10000+ posts
rank: 10000+ posts
Posts: 12045
Joined: Sat Dec 20, 2008 6:07 am
Reputation: 1790
Location: Granbury, TX
Gender: Male
Contact:

Re: The ideas that I trade by:

Postby prochargedmopar » Tue Aug 23, 2016 5:44 pm

TheRumpledOne wrote:
salezyakuku wrote:Solved. No more refresh or TF switch after MT4 restart. It works faster.


Modified it to use actual account size.

EIGHTS_MONEY_MOD_25_7_TRO_MODIFIED.mq4


Leave it to TRO,
You know he's gotta get the skull and crossbones in there somewhere.
Now that this version is released I'm gonna install it on my chart for the first time.
Been waiting. hahaha
#1BODY in direction of profit #2INCREASE lot size Obsessively
My Losses cause me Great Laughter!
Trading Bible here> therumpledone/the-ideas-that-i-trade-by-t3256/page1670

User avatar
MightyOne
rank: 5000+ posts
rank: 5000+ posts
Posts: 6055
Joined: Wed Dec 10, 2008 6:33 pm
Reputation: 560
Gender: Male

Re: The ideas that I trade by:

Postby MightyOne » Thu Aug 25, 2016 7:54 am

Hours of modifying code...
I didn't mean to waste so much time, it just happened #-o

GBPAUDWeekly.png
GBPAUDWeekly.png (26.16 KiB) Viewed 3519 times

User avatar
MightyOne
rank: 5000+ posts
rank: 5000+ posts
Posts: 6055
Joined: Wed Dec 10, 2008 6:33 pm
Reputation: 560
Gender: Male

Re: The ideas that I trade by:

Postby MightyOne » Thu Aug 25, 2016 7:12 pm

Getting closer to what I want to see:

EURCHFWeekly.png
EURCHFWeekly.png (29.39 KiB) Viewed 3467 times

User avatar
aliassmith
rank: 5000+ posts
rank: 5000+ posts
Posts: 5054
Joined: Tue Jul 28, 2009 9:50 pm
Reputation: 2846
Gender: Male

Re: The ideas that I trade by:

Postby aliassmith » Thu Aug 25, 2016 8:35 pm

MightyOne wrote:Hours of modifying code...
I didn't mean to waste so much time, it just happened #-o

GBPAUDWeekly.png


You have plenty of time between those monthly and yearly candles you trade. :mrgreen:
Trade Your Way as Long as It Makes Money!

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

User avatar
MightyOne
rank: 5000+ posts
rank: 5000+ posts
Posts: 6055
Joined: Wed Dec 10, 2008 6:33 pm
Reputation: 560
Gender: Male

Re: The ideas that I trade by:

Postby MightyOne » Fri Aug 26, 2016 6:04 am

aliassmith wrote:
MightyOne wrote:Hours of modifying code...
I didn't mean to waste so much time, it just happened #-o

GBPAUDWeekly.png


You have plenty of time between those monthly and yearly candles you trade. :mrgreen:


I diversify between pairs and periods these days :wink:

I am finally done modifying the indicator.
(2016 donational, you'll have to ask TRO for it)

mid[BI] -20
1) there was a breakout of the previous high
2) the current midpoint is greater than the previous midpoint (for outside bars)
3) the close is currently 20 pips below the previous midpoint

mid[BO] 75
1) the current midpoint was dragged above the previous high
2) price is currently 75 pips above the midpoint
(if the number turns negative then the bias has been reversed)

reversed 37
1) there was a breakout of the previous high
2) the midpoint is greater than the previous midpoint (for outside bars)
3) the close is currently 37 pips lower than the previous high

-501/262
1) price is ranging within the extremes of the previous candle
(down 501 from the previous high, up 262 from the previous low)
2) the close is currently below the current midpoint (bias is down)

USDJPYMonthly.png
USDJPYMonthly.png (29.39 KiB) Viewed 3387 times

Sacrophage
rank: 150+ posts
rank: 150+ posts
Posts: 152
Joined: Tue May 17, 2016 8:16 pm
Reputation: 16
Gender: None specified

Re: The ideas that I trade by:

Postby Sacrophage » Fri Aug 26, 2016 1:44 pm

Hotness. Send it TRO! MO, previous means the last candle, or is there a lookback parameter to find a previous H/L?

User avatar
MightyOne
rank: 5000+ posts
rank: 5000+ posts
Posts: 6055
Joined: Wed Dec 10, 2008 6:33 pm
Reputation: 560
Gender: Male

Re: The ideas that I trade by:

Postby MightyOne » Fri Aug 26, 2016 4:45 pm

Sacrophage wrote:Hotness. Send it TRO! MO, previous means the last candle, or is there a lookback parameter to find a previous H/L?


Candle[1] is previous.

I go back as far as candle[2] for the midpoint calculation:
if(plow > ppclose){plow = ppclose;}
if(phigh < ppclose){phigh = ppclose;}
pmidpoint = (phigh + plow)/2;
The current midpoint is found in a similar way:
if(low > pclose){low = pclose;}
if(high < pclose){high = pclose;}
midpoint = (high + low)/2;

This is the "deep reversal" aka midpoint break-in (mid[BI]):
if( high > phigh && midpoint > pmidpoint && close < pmidpoint || low < plow && midpoint < pmidpoint && close > pmidpoint){ ...

If the number is negative then you know that it broke the previous high and reversed and if it is positive then you can be sure that price broke the previous low and reversed. The bias is the long above / short below the previous extreme, the mid[BI] just gives a new point at which to continue that bias.

mid[B0]:
if(midpoint > phigh && close >= phigh) {

reversed x:
if( high > phigh && midpoint > pmidpoint && close < phigh ) {

User avatar
MightyOne
rank: 5000+ posts
rank: 5000+ posts
Posts: 6055
Joined: Wed Dec 10, 2008 6:33 pm
Reputation: 560
Gender: Male

Re: The ideas that I trade by:

Postby MightyOne » Fri Aug 26, 2016 5:02 pm

Bias example:

USDJPYDaily.png
USDJPYDaily.png (34.68 KiB) Viewed 3412 times

User avatar
MightyOne
rank: 5000+ posts
rank: 5000+ posts
Posts: 6055
Joined: Wed Dec 10, 2008 6:33 pm
Reputation: 560
Gender: Male

Re: The ideas that I trade by:

Postby MightyOne » Fri Aug 26, 2016 5:16 pm

M5 Example:

USDJPYM5.png
USDJPYM5.png (50.61 KiB) Viewed 3408 times

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.


Return to “TheRumpledOne”