Thank you again Steve. Will try as you have suggested and will post again afterwards. Waiting for market to open and see if the ea will send any trade.
peter
Help Coding with iCustom(PinBar)
-
fx800
- Trader
- Posts: 1334
- Joined: Sun Dec 04, 2011 4:11 am
Help Coding with iCustom(PinBar)
In the chart shown, there was a down pin bar 4 candles back. The ALERT returns a value of 1.3833 which is exactly the same figure in the DATA WINDOW for PB DOWN when I pointed the cursor on the same candle.fx800 » Sun Feb 11, 2018 1:49 pm wrote:Thank you again Steve. Will try as you have suggested and will post again afterwards. Waiting for market to open and see if the ea will send any trade.
peter
I have assigned a value of 0 to static datetime OldPBBarTime as suggested. Waiting for market to open.
You do not have the required permissions to view the files attached to this post.
-
fx800
- Trader
- Posts: 1334
- Joined: Sun Dec 04, 2011 4:11 am
Help Coding with iCustom(PinBar)
If the code for pin bar does work, then I would like to test whether trading a pin bar bouncing off a pivot would be profitable or not as shown in the examples. The code snippets for NextSupport/NextResistance has been borrowed from the Pinoccio ea.fx800 » Sun Feb 11, 2018 2:16 pm wrote:In the chart shown, there was a down pin bar 4 candles back. The ALERT returns a value of 1.3833 which is exactly the same figure in the DATA WINDOW for PB DOWN when I pointed the cursor on the same candle.fx800 » Sun Feb 11, 2018 1:49 pm wrote:Thank you again Steve. Will try as you have suggested and will post again afterwards. Waiting for market to open and see if the ea will send any trade.
peter
I have assigned a value of 0 to static datetime OldPBBarTime as suggested. Waiting for market to open.
P.S. LibSSSRv2 replaced by latest version LibSSSRv4
You do not have the required permissions to view the files attached to this post.
Last edited by fx800 on Tue Feb 13, 2018 5:33 am, edited 1 time in total.
-
fx800
- Trader
- Posts: 1334
- Joined: Sun Dec 04, 2011 4:11 am
Help Coding with iCustom(PinBar)
Thank you Steve for your help with coding the indi. The amended code worked when I substituted the pin bar code in your Pinoccio ea with it. For some reason the ea I posted still has not sent any trades. I will continue to investigate and report back if I find the answer.
:hi: :hi: :hi:
:hi: :hi: :hi:
- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
Help Coding with iCustom(PinBar)
I knew I had coded pinbar code somewhere, but buggered if I could remember where.fx800 » Mon Feb 12, 2018 11:13 pm wrote:Thank you Steve for your help with coding the indi. The amended code worked when I substituted the pin bar code in your Pinoccio ea with it. For some reason the ea I posted still has not sent any trades. I will continue to investigate and report back if I find the answer.
:hi: :hi: :hi:
The first thingy I do in this sort of situation is check that void LookForTradingOpportunities() is being called.
I use this code to see whether some point in my code is actually being reached, so here it goes at the top of void LookForTradingOpportunities() :
Alert("Y");
It doesn't matter what the alert shows; you just need it to be happening.
Once I know that the function is being called, I move the Alert("Y"); thingy to wherever I think the code should be reaching.
Suppose the function is being called but there is no trade signal identified in your code? Adopt the same principle. Go to line 2942 in the file you presented here and add some code along these lines:
if (BuySignal) Alert(Symbol(), " Buy signal found");
if (SellSignal) Alert(Symbol(), " Sell signal found");
etc
Then, if you know that your EA should have generated a signal but hasn't thrown an Alert, there is something wrong with your trade signal detection code.
This is how I spend vast chunks of my life.
There are probably better ways of doing this known to the Proper Coders here. I am describing what I do.
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.
-
fx800
- Trader
- Posts: 1334
- Joined: Sun Dec 04, 2011 4:11 am
Help Coding with iCustom(PinBar)
Thank you again Steve. Will work on it and report back if I find the answer.

- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
Help Coding with iCustom(PinBar)
I have edited my post.fx800 » Mon Feb 12, 2018 11:52 pm wrote:Thank you again Steve. Will work on it and report back if I find the answer.
![]()
![]()
Good luck. You will feel fantastic when you find the solution.
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.
-
fx800
- Trader
- Posts: 1334
- Joined: Sun Dec 04, 2011 4:11 am
Help Coding with iCustom(PinBar)
Thanks again.SteveHopwood » Mon Feb 12, 2018 11:54 pm wrote:I have edited my post.fx800 » Mon Feb 12, 2018 11:52 pm wrote:Thank you again Steve. Will work on it and report back if I find the answer.
![]()
![]()
Good luck. You will feel fantastic when you find the solution.