Hey Steve,
Is #define NL "\n" critical to anything in particular besides screen message?
I ask because I am running a couple EAs on Unix terminals and the \n makes a box. If I delete it and leave the define as "" then it appears normal.
Your thoughts?
Peaky
-
DigitalCrypto
- Trader
- Posts: 237
- Joined: Tue Feb 24, 2015 4:38 am
Peaky
You do not have the required permissions to view the files attached to this post.
- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
Peaky
No. All it does is force the start of a new line in the chart display. It appears nowhere else in the code.DigitalCrypto » Wed Jun 21, 2017 9:07 am wrote:Hey Steve,
Is #define NL "\n" critical to anything in particular besides screen message?
I ask because I am running a couple EAs on Unix terminals and the \n makes a box. If I delete it and leave the define as "" then it appears normal.
Your thoughts?
Read the effing manual, ok?
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
-
thomasmore
- Trader
- Posts: 275
- Joined: Tue Nov 15, 2011 10:35 pm
- Location: Knokke, Belgium
Peaky
Launched Peaky (v. 1i) and the Dashboard on a GP-demo yesterday, OOTB on H1, and the green pips are showing up!
Thanks Steve et al. for this great EA and it's User Guide.
One thing that I cannot get to work is the Zoom_Level: whatever value I enter, the chart zooms out to the max. I didn't find any other user mentioning this in the tread, so it could be something I overlooked, but I cannot figure it out.
Best regards,
thomasmore
Thanks Steve et al. for this great EA and it's User Guide.
One thing that I cannot get to work is the Zoom_Level: whatever value I enter, the chart zooms out to the max. I didn't find any other user mentioning this in the tread, so it could be something I overlooked, but I cannot figure it out.
Best regards,
thomasmore
-
ymleong
Peaky
Its great to hear that u hv green pips, i have 3 open trades and abt 5-6 limit orders. So far so good and i started few days b4 u. Certainly patience is req'd for peaky to workthomasmore » Wed Jun 21, 2017 5:59 pm wrote:Launched Peaky (v. 1i) and the Dashboard on a GP-demo yesterday, OOTB on H1, and the green pips are showing up!
Thanks Steve et al. for this great EA and it's User Guide.
One thing that I cannot get to work is the Zoom_Level: whatever value I enter, the chart zooms out to the max. I didn't find any other user mentioning this in the tread, so it could be something I overlooked, but I cannot figure it out.
Best regards,
thomasmore
- Zool
- Trader
- Posts: 50
- Joined: Wed May 09, 2012 8:39 pm
- Location: Komárom, Hungary
Peaky
There is a ChartScaleSet() function call (to set the chart's scale) by the GetSixths() function - that is calculating the sixths values - with a fixed 0 value, and this is called with every tick. The only time the ChartScaleSet() is called with the value in the user inputs is at the initialization when you first put the EA on a chart. After the first tick, the sixths function is called and set the scale back to 0. I mentioned it in my previous post, only it doesn't reset my scale, but froze my platform - haven't tried it again to check if this has been changed.thomasmore » Wed Jun 21, 2017 10:59 am wrote:Launched Peaky (v. 1i) and the Dashboard on a GP-demo yesterday, OOTB on H1, and the green pips are showing up!
Thanks Steve et al. for this great EA and it's User Guide.
One thing that I cannot get to work is the Zoom_Level: whatever value I enter, the chart zooms out to the max. I didn't find any other user mentioning this in the tread, so it could be something I overlooked, but I cannot figure it out.
Best regards,
thomasmore
- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
Peaky
I will fix that in the next update. In the meantime, go to line 3851 and copy:
over the top of the existing block.

Code: Select all
int scale = ChartScaleGet();
if (scale != Zoom_Level)
{
ChartScaleSet(Zoom_Level);
//A quick time frame change to force accurate display
//per = ChartPeriod(0);
//int nextPer = GetNextPeriod(per);
//ChartSetSymbolPeriod(0, Symbol(), nextPer);//Change time frame
//ChartSetSymbolPeriod(0, Symbol(), per);//reset time frame
}//if (scale != Zoom_Level)
Read the effing manual, ok?
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
-
macckentaj
- Posts: 9
- Joined: Sun Oct 09, 2016 6:07 pm
Peaky
started peaky yesterday afternoon and already 8 trades closed in profit just amazing !! had them set at 35 pips each
have more open trades looking to hit TP
have more open trades looking to hit TP
- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
Peaky
Hey folks, now I have this on the H1 on my live trading account, I am demoing M15 with a 30 pip TP and PendingTradeBufferPips of 5. It is kicking bottom. Setfile attached for ease of playing with it.

You do not have the required permissions to view the files attached to this post.
Read the effing manual, ok?
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
-
ymleong
Peaky
Did u just change TP to 35 or was there anything that u tweaked? I am still staring at 3 open tradesmacckentaj » Wed Jun 21, 2017 7:20 pm wrote:started peaky yesterday afternoon and already 8 trades closed in profit just amazing !! had them set at 35 pips each![]()
![]()
![]()
![]()
have more open trades looking to hit TP
- cozybooks
- Trader
- Posts: 301
- Joined: Wed Mar 27, 2013 1:33 am
Peaky
Early closed trade results from my live 15 minute Peaky. Up almost 70 pips on two pairs. I have two trades open running about 25 pips in the hole, but chugging along nicely.
If I don't run it live, I won't pay attention to it, so this is a good long term experiment. 6 pairs live, EURUSD, GBPUSD, USDJPY, EURGBP, AUDCAD, USDCHF. You'll notice three of the pairs don't tend to move a lot of pips in any given three month period, which is help keeping risk low.
U.S. trading, so the first trade has to close first, so I'm experimenting with using 2 trades as a basket and then setting the basket TP for what I think on that pair.
Great fun, and lots of pips to follow! I was using 8 pips as my crossover, but I think Steve is more on the mark using 5.

If I don't run it live, I won't pay attention to it, so this is a good long term experiment. 6 pairs live, EURUSD, GBPUSD, USDJPY, EURGBP, AUDCAD, USDCHF. You'll notice three of the pairs don't tend to move a lot of pips in any given three month period, which is help keeping risk low.
U.S. trading, so the first trade has to close first, so I'm experimenting with using 2 trades as a basket and then setting the basket TP for what I think on that pair.
Great fun, and lots of pips to follow! I was using 8 pips as my crossover, but I think Steve is more on the mark using 5.
You do not have the required permissions to view the files attached to this post.