Quote:
Originally Posted by cockeyedcowboy
Matrix
will the script be a time loop?
will the currencies be past it by user inputs, seperate file, or from another indicator or script file.
will this script only open the orders? or wil it manage them and or close them?
Are you going to manage the orders after there placed? If thats the case then creating this limited use script would not be of any great benefit as it would be quicker to enter the orders your self manually. Unless you dont know how the pairings go, which somehow, I dont think thats the case.
I must be missing something in your request a script that will only match currencies to create a pair and place orders, can be done quicker manually.
Keit
|
No your not missing anything

Sometimes there might be 15 possible order pairs and figuring out which ones they are and whether to Buy or Sell can take some time. The script wont do anything other than what you deduced at the end of you post

Just place the orders, I have another EA on the chart that manages the orders.
I have a script that is supposed to do this already but does not work correctly and misses many orders.
Here are it's user inputs;
Code:
extern string StrengtheningBases = "EUR,JPY,NZD" ;
extern string WeakeningBases = "AUD,USD,GBP" ;
extern string Pairs = "AUDJPYm,AUDNZDm,AUDUSDm,CHFJPYm,EURAUDm,EURCADm,EURCHFm,EURGBPm,EURJPYm,EURUSDm,GBPCHFm,GBPJPYm,GBPUSDm,NZDJPYm,NZDUSDm,USDCADm,USDCHFm,USDJPYm,NZDUSDm,AUDCADm,AUDCHFm,EURNZDm,GBPNZDm,NZDCHFm,GBPCADm" ;
extern double Lots = 0.1 ;
see

it doesn't do anything else but figure out Strong and Weak base currencies and place the orders accordingly to what it matches looking at all the currencies I've allowed it to use.
Thank you