(FPI) predictive price - page 2

 

I am missing something I think

Hi Nicholishen

I just want to have abasic run down of the indi/EA.

I figure that it is scanning for matches.

Could you please provide a screen shot (if any) of what I should see on the chart.

Do I attach the EA only to one chart

What TF

I just need some guidance on the EA. I have the idea behind it under the belt.

Thank you

 

how do you know which rings are associated with which colored lines or is this a wrong question?

Nicholishen:
The prices refer to the target price set by FPI for the given ring it is positioned in. The matches refer to how many matching rings (rings that contain chart currency).

The rings are (example EURUSD rings in RED):

1. "EURJPY","EURAUD","AUDJPY"

2. "EURJPY","EURCHF","CHFJPY"

3. "EURJPY","EURGBP","GBPJPY"

4. "EURJPY","EURUSD","USDJPY"

5. "AUDJPY","AUDUSD","USDJPY"

6. "EURUSD","EURAUD","AUDUSD"

7. "EURUSD","EURGBP","GBPUSD"

8. "USDJPY","USDCHF","CHFJPY"

9. "GBPJPY","GBPCHF","CHFJPY"

10. "GBPJPY","GBPUSD","USDJPY"

11. "EURCAD","EURUSD","USDCAD"

12. "EURCHF","EURGBP","GBPCHF"

13. "EURCHF","EURUSD","USDCHF"

14. "GBPCHF","GBPUSD","USDCHF"
 

Mini Live Acc

Hi.

Just a quick one on the EA Code

I want to run this on a Live account data feed so I am using a mini account

Should this segment

string pairs[14][3]={

"EURJPY","EURAUD","AUDJPY",//1 d

"EURJPY","EURCHF","CHFJPY",//6 h, inv

"EURJPY","EURGBP","GBPJPY",//12 inv

"EURJPY","EURUSD","USDJPY",//14

"AUDJPY","AUDUSD","USDJPY",//2 d

"EURUSD","EURAUD","AUDUSD",//3 d

"EURUSD","EURGBP","GBPUSD",//13

"USDJPY","USDCHF","CHFJPY",//8

"GBPJPY","GBPCHF","CHFJPY",//7 inv

"GBPJPY","GBPUSD","USDJPY",//14

"EURCAD","EURUSD","USDCAD",//9 inv

"EURCHF","EURGBP","GBPCHF",//10 inv

"EURCHF","EURUSD","USDCHF",//11 inv

"GBPCHF","GBPUSD","USDCHF",//15

};

be changed to

string pairs[14][3]={

"EURJPYm","EURAUDm","AUDJPYm",//1 d

"EURJPYm","EURCHFm","CHFJPYm",//6 h, inv

"EURJPYm","EURGBPm","GBPJPYm",//12 inv

"EURJPYm","EURUSDm","USDJPYm",//14

"AUDJPYm","AUDUSDm","USDJPYm",//2 d

"EURUSDm","EURAUDm","AUDUSDm",//3 d

"EURUSDm","EURGBPm","GBPUSDm",//13

"USDJPYm","USDCHFm","CHFJPYm",//8

"GBPJPYm","GBPCHFm","CHFJPYm",//7 inv

"GBPJPYm","GBPUSDm","USDJPYm",//14

"EURCADm","EURUSDm","USDCADm",//9 inv

"EURCHFm","EURGBPm","GBPCHFm",//10 inv

"EURCHFm","EURUSDm","USDCHFm",//11 inv

"GBPCHFm","GBPUSDm","USDCHFm",//15

};

I know some EA's require the "m" for mini accounts.

So do I just change the code and recompile.

Please advise

 

thesource, you was right, you need to put the "m" at the end of each currencie for the EA, it is working find now... thx Max

 
Nicholishen:
The colored lines are the new target prices based on the FPI concept. Since it is calulated from rings of three symbols only one of two things can happen. When the target price jumps away from the actual price either:

A) One of the two other pairs in the ring will adjust its price

B) The pair on the Chart will adjust its price

The more targets going in one direction the more likely it is that the pair on the chart will be the one to adjust.

Can I ask questions

1. This is an EA but is the intention that it can be used like an indicator?

2. I loaded it into expert and at the moment it shows 3 lines on E/U around 1.3137, will these lines move to show the proposed target for the price?

3. in the info it talks about entry and exit lines, but my 3 lines are grouped together as attached is this correct?

Files:
fpi.jpg  182 kb
 

You will need to zoom your chart to M1. This is an extremely short term indicator.

Here is an updated version that comments the ring and its corresponding color.

 
I know some EA's require the "m" for mini accounts. So do I just change the code and recompile.

I just added an extern bool (IsMini) then added this routine to the init()

if(IsMini){

for(int i=0;i<14;i++){

for(int y=0;y<3;y++){

pairs[y]=pairs[y]+"m";

}

}

}

 

i've put int on the euro/usd. the yellow line refers to eur/jpy, eur/usd and eur/jpy. i see it jumping up and down while the bid line on the chart is stationary.

how do you interpret the movement of all of these lines?

 
BluePearl:
i've put int on the euro/usd. the yellow line refers to eur/jpy, eur/usd and eur/jpy. i see it jumping up and down while the bid line on the chart is stationary. how do you interpret the movement of all of these lines?

please read the first post on the fpi thread... the link is found on post 1

 

Mini Bool

HI Nic

Just a quick Q on the code you palced to define between a Standard and Mini Account.

Where do I place it. I keep getting errors inserting it.

Could you pleae provide a full sample that I can study.

Q2 Does this Internal bool apply/fix all EA's and Indicators requiring the "m"

Thank you