Topic: Price Action Indi

Hi
Have the Price Action Indi but the Eas function not only when I let the Ea run over Fsb Brigde it works.

It is a Differgenz of Price Action Indi.

Ea in Mt4 no Trade
Ea with Fsb Brigde makes 1 Trade.

lg Pit

Post's attachments

Price Action Indicator.PNG 134.78 kb, 1 downloads since 2015-09-17 

You don't have the permssions to download the attachments of this post.

Re: Price Action Indi

I see that Price Action indicator doesn't rise signals.

The problem is that the logic rules are not correctly defined:

Price Action Indicator

IndParam.ListParam[0].ItemList = new string[]
            {
                " rises",
                " falls",
                " is higher than the level line",
                " is lower than the level line",
                " crosses the level line upward",
                " crosses the level line downward",
                " changes its direction upward",
                " changes its direction downward"
            };

The options must not start with a space because the EA trims the white spaces.

For example the rule " rises", should be "Rises".
" crosses the level line upward" should be "Crosses the level line upward" or even better - "PAI crosses the level line upward".

This indicator can be fixed for 1 minute. I hope its author will do it.

PS.

If anyone is interested, here is the preferred way to name an indicator: Naming Convention for Custom Indicators

Re: Price Action Indi

Should be fixed now, sorry for inconvenience!

Re: Price Action Indi

Excellent. Thank you.

Re: Price Action Indi

Hi
Do not understand where the fault lies, or you can just about FSB brigde the Ea run?

Thank Pit

Re: Price Action Indi

Pit wrote:

Hi
Do not understand where the fault lies, or you can just about FSB brigde the Ea run?

Thank Pit

Re-download the indi from repository, it should work OK, let me know your progress.

Re: Price Action Indi

Hi
Thank'll try next week I can say more

Pit