- Joined
- 28 May 2009
- Posts
- 147
- Reactions
- 0
So what would be common platform information if I logged on using Caribeans login and password. Account balance only?
Yes, you would only see the aco**** balance and any running trades.
So what would be common platform information if I logged on using Caribeans login and password. Account balance only?
Yes, you would only see the aco**** balance and any running trades.
I think they have penalised me for my spelling mistake....
Hey Stormin! I think I worded it wrong... djc0 placed a trade and came back to it afterwards and saw that his stop was hit, even though the charts didn't reflect it... Chris responded that it was due to the charts only showing bid prices... I guess I meant to ask:
Is there was a way to see the ask prices when looking back at a chart after the trade in order to determine when your stop was hit?
if( SpikePipsMargin !=0) int timeminutes15 =15; total = OrdersTotal();
{
for(i = total - 1; i >= 0; i--)
{
OrderSelect(i, SELECT_BY_POS, MODE_TRADES);
if(OrderType()==OP_BUY && OrderSymbol()==Symbol())
if(((TimeCurrent() - OrderOpenTime())/60) == timeminutes15 )
{
if (iClose( NULL,PERIOD_M15,1) > iOpen(NULL,PERIOD_M15,1)) //Bulls spike
{
if ((iHigh(NULL,PERIOD_M15,1)-iClose(NULL, PERIOD_M15,1)) >= ((iClose(NULL,PERIOD_M15,1) - iOpen(NULL,PERIOD_M15,1))*3.5) || ((iHigh(NULL,PERIOD_M15,1)-iClose(NULL, PERIOD_M15,1))> SpikePipsMargin *0.0001))
{
if (OrderOpenPrice() > (Ask+Bid/2 - 3*0.0001))
{
if(PrintComments) Print("15 minute spike order closed.");
glOrderClose();
}
}
}
else if (iOpen(NULL,PERIOD_M15,1) > iClose( NULL,PERIOD_M15,1)) //Bears spike
{
if ((iHigh(NULL,PERIOD_M15,1)-iOpen(NULL, PERIOD_M15,1)) >= ((iOpen(NULL,PERIOD_M15,1)- iClose(NULL,PERIOD_M15,1))*3.5)|| ((iHigh(NULL,PERIOD_M15,1)-iOpen(NULL, PERIOD_M15,1))> SpikePipsMargin *0.0001))
{
if (OrderOpenPrice() > (Ask+Bid/2 - 3*0.0001))
{
if(PrintComments) Print("15 minute spike order closed.");
glOrderClose();
}
}
}
}
}
So two different windows versions (SE and Pocket PC) but no OSX (i.e. iPhone) ... ? Unless i missed something. I guess what i'm asking is if they have a port of their mobile platform in the works for the iPhone.
Does anyone know what the minimum stop levels for Go are?
I am testing an EA tonight and am getting an OrderSend error 130 (not a wide enough stop). But when I check MarketInfo() I get StopLevel = 0.00000.
I am trying to place a short at a Bid = 1.49674, and the SL = 1.49855 (this is backtesting on Jan7).
I don't use a fixed point SL, it's set from the chart, but am happy to put a minimum stop level in, but Go don't seem to advertise it through MT4's MarketInfo function.
Any help appreciated.
Dave
There are no restrictions on where you can place your orders. You can have your stop loss/limit orders as close as you like!
Does anyone know what the minimum stop levels for Go are?
I am testing an EA tonight and am getting an OrderSend error 130 (not a wide enough stop). But when I check MarketInfo() I get StopLevel = 0.00000.
I am trying to place a short at a Bid = 1.49674, and the SL = 1.49855 (this is backtesting on Jan7).
I don't use a fixed point SL, it's set from the chart, but am happy to put a minimum stop level in, but Go don't seem to advertise it through MT4's MarketInfo function.
Any help appreciated.
Dave
just a note to go. there's a nasty EA called fx genius which tries to take advantage of slower broker feeds to 'cheat' out a couple of pips from brokers which dont update their prices quickly.
id hate to have restrictions placed on all of us cause of that nasty piece of work. so keep an eye out for it.
is it because you are putting in the stop/take profit at the same time as the order? it needs to be done separately.
put the order in, then modify it with the stop/take profit.
Hello and welcome to Aussie Stock Forums!
To gain full access you must register. Registration is free and takes only a few seconds to complete.
Already a member? Log in here.