| / | Forum |
|
jianweikang
2006.09.10 19:07
what is the trouble of the MultiBank FX?
where is the MultiBank FX? (NFA ID: 0362216 ) |
|
Mathematics in Trading: How to Estimate Trade Results A certain level of mathematical background is required of any trader, and this statement needs no proof. The matter is only: How can we define this minimum required level? |
|
ScottB
2006.09.10 19:46
I believe the ultimate clearing firm of MultiBank FX is: phone: (888) 367-3957 help@fxlq.com |
|
jianweikang
2006.09.12 14:25
ScottB wrote: thank you, Scottb.I believe the ultimate clearing firm of MultiBank FX is: phone: (888) 367-3957 help@fxlq.com but the MultiBank FX is using MT4.0 else. is there any relations with Meta Co.? |
|
ScottB
2006.09.12 16:22
I am not 100% certain of what you are asking so I may not answer your question correctly.
Forex Liquidity LLC does use MT4.0 and I do not believe there is any relationship
beyond the software between them or any other forex dealer with Meta Co. Meta Co.
produces MT4 but I don't think they ever act as a broker. |
|
jianweikang
2006.09.17 21:08
thank you very much, Scottb.
by the way, there is a question to ask you. can you write a code for "price" and "MACD" being deviation: High[i] >= High[Highest(NULL,0,MODE_HIGH, 12, i)]; but MACD < highest value of MACD within 12 period. |
|
ScottB
2006.09.19 05:15
jianweikang wrote: thank you very much, Scottb. by the way, there is a question to ask you. can you write a code for "price" and "MACD" being deviation: High[i] >= High[Highest(NULL,0,MODE_HIGH, 12, i)]; but MACD < highest value of MACD within 12 period. I am not certain what you the price to be based on. The above pseudo code would seem to give a signal but I don't know enough about MACD to know the price or direction of that signal. Possibly another forum member can help out. |
|
jianweikang
2006.09.19 18:20
Yes,you are right,ScottB. I am writing an "EA" on H1 chart that give a
signal to buying or selling signals.
Macd[i]=iMACD(NULL,0,12,26,9,PRICE_CLOSE,MODE_MAIN,i); if( High[i] >= High[Highest(NULL,0,MODE_HIGH,12,i)] && Macd[i]<" highest value of Macd[i] within 12 period") ticket=OrderSend(Symbol(),OP_SELL,Lots,Bid,3,Ask+TrainlingStop*Point, 0, "", #,0,Red); Now,I don't know how to write "highest value of Macd[i] within 12 period", can you complete it? Thanks in advance weikang |
|
ScottB
2006.09.19 18:50
This is the easy way out; easy to understand, quick and easy for me to code :) int macdPeriod = 12; double saveMACD = 0; for (int idx = 0; idx < macdPeriod; idx++) { if (Macd[idx] > saveMACD) saveMACD = Macd[idx]; } put this code directly after Macd[i]=iMACD... and that should get you close. I am writing this without the benefit of a complier or testing so a) it may not complie as is, b) it may not work as is but should be close and c) there may be much better ways to do this. Good luck, if I can help any more, please post in this thread as I have suscribed to it. Happy trading Scott |
|
jianweikang
2006.09.20 16:52
May be a little wrong for your code, //---- check for possible errors |