stevehopwoodforex.com
https://www.stevehopwoodforex.com/phpBB3/
Print view

Peaky on Steroids
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=5204
Page 93 of 97
Author:  donix [ Wed Oct 02, 2019 10:36 am ]
Post subject:  Peaky on Steroids

I added a ATR condition: Close all symbols when the target was reached and ATR is low (<= 0.003)

Code: Select all

{
	for(int k = 0; k < SymbolsTotal(true); k++) {
		string symbol_marketwatch = SymbolName(k, true);
		double sum = 0;
		for(int j = OrdersTotal()-1; j >= 0; j--) {
			if(OrderSelect(j, SELECT_BY_POS) && symbol_marketwatch == OrderSymbol() && OrderType() < 2)
				sum += OrderProfit();
		}
		int dATR = GetAtr(symbol_marketwatch, TimeFrames[1], 14, 1);
		
		if(sum >=  BasketCashAllCurrencyPairsTarget && (dATR <= 0.0030)) {
			Print("closing all: ", symbol_marketwatch, " in profit of >= ", sum);
			for(int i = OrdersTotal()-1; i >= 0; i--) {
				if(OrderSelect(i, SELECT_BY_POS) && symbol_marketwatch == OrderSymbol() && OrderType() < 2)
					if(!OrderClose(OrderTicket(), OrderLots(), OrderType() == OP_BUY ? MarketInfo(symbol_marketwatch, MODE_BID) : MarketInfo(symbol_marketwatch, MODE_ASK), 3))
						Print("close failed: ", GetLastError());
			}
		}
	}
}
Peaky on Steroids 1p donix_LAB 0.1.mq4
Author:  donix [ Fri Oct 04, 2019 8:05 pm ]
Post subject:  Peaky on Steroids

Updated post and fixed code: Peaky on Steroids 1p donix_LAB 0.1.mq4

http://www.stevehopwoodforex.com/phpBB3 ... 11#p168811
Author:  trader689 [ Tue Oct 08, 2019 9:23 pm ]
Post subject:  Peaky on Steroids

Thanks for the share of your custom version donix, as well as sharing your settings on p90 of the thread. Has gotten off to a great start so far this week. :good:

Let's see how it performs going forward

Trader
Author:  echoman01 [ Thu Oct 10, 2019 6:25 am ]
Post subject:  Peaky on Steroids

Thanks donix ! :party:
Author:  Gertje [ Tue Oct 15, 2019 10:59 am ]
Post subject:  Peaky on Steroids

I just HAD to share this, insane behaviour of price.
:!!:
Thanks to Renee's TradeReplicator I was able to catch a few pips within seconds.
GBPAUD.png
1st trade opened 12.09.56 and closed 12.09.58; 20 pips in 2 seconds
2nd trade opened 12.10.10 and closed 12.10.18; 24 pips in 8 seconds
3th trade opened 12.10.28 and closed 12.19.37; 25 pips in a slow 9 minutes... :smile:
Author:  Gertje [ Fri Nov 01, 2019 9:53 am ]
Post subject:  Peaky on Steroids

:!!: :!!: :!!:
I just realised I passed the 100.000 pip mark on my live account using PoS..... :party:
It took me a lot longer than Tomele with his settings on SPB, but I enjoyed the journey.
XAUUSDDaily.png
:!!: :!!: :!!:
Author:  andwen [ Fri Nov 01, 2019 9:58 am ]
Post subject:  Peaky on Steroids

EXTRAORDINARY effort Gertje

Well done :hi: :cheer:

I am back into POS for the last month or so we will see
Author:  Yannis [ Fri Nov 01, 2019 10:00 am ]
Post subject:  Peaky on Steroids

Fireworks indeed Gertje, stunning result, well done and well deserved.
:party: :!!:
Author:  bodavid [ Fri Nov 01, 2019 11:17 am ]
Post subject:  Peaky on Steroids

GREAT WORK :clap: :clap: :clap:
:!!: :!!: :!!: :!!: :!!:
Author:  SteveHopwood [ Fri Nov 01, 2019 12:05 pm ]
Post subject:  Peaky on Steroids

Oh wow. You cannot even begin to imagine how thrilled I am.

This is an epic success. It sends this message to the rest of us: stick with something you believe has potential and make it work for you.

Now for the party
:party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :party: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!: :!!:
All times are UTC Page 93 of 97