Chee Chua
Chee Chua
  • Information
6+ years
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Friends

Add friends via their profile or user search and you will be able to see if they are online

Chee Chua
Added topic Help! - How do I hedge with the total of the opposite direction?
Help! - How do I hedge with the total of the opposite direction? Scenario: I have a couple of opened short positions, then price break the resistance. I would like to take a long position which is the maybe twice the TotalShortPosition() - (which is
Chee Chua
Added topic Help - need help debugging my function to count total lots bought (total lots in long position)
Help - need help debugging my function to count total lots bought (total lots in long position) I need to know how many lots in long position I had opened. //------------------------------- void BuyLotsCount() { int lcnt; int ltotal = OrdersTotal();
Chee Chua
Added topic Need Help! - How to make trailing stop not take losses when negative profit?
I am back testing using MB trading demo. Th standard trailing stop code will not take into consideration of the commission and order swap. Anyone had tried successful to have the trailing stop not take losses with negative profit? typical trailing
Chee Chua
Added topic how do I disable Tester: Stop Loss and error 148?
I am using strategy tester and need to disable 1) Tester: Stop Loss how do I disable this 2) and error 148 (which is The amount of open and pending orders has reached the limit set by the broker) if this is broker dependent, which broker has demo
Chee Chua
Added topic How many ticks will there be in 1min?
How many ticks will there be in 1min
Chee Chua
Added topic Help! - How to make trailing stop loss take into consideration of order commission and order swap?
I get negative profit when running trailing stop loss because the code does not account for the commission and swap, I tried the followings which don't work need help, thanks! void LongTrailingStop() { int lcnt; int ltotal = OrdersTotal(); double
Chee Chua
Added topic Help! - How to not place new order too closed to already opened price?
How do I check through all already opened price ? I tried the following, but does not work. if (condition)..... for(bcnt=btotal-1; bcnt >= 0; bcnt--) { OrderSelect(bcnt, SELECT_BY_POS, MODE_TRADES); if(OrderType()<=OP_SELL &&
Chee Chua
Added topic Help! - Is it possible to add Trailing Stop on OrderSend? I need trailing Stop on every new order placed.
Beginner here. I have different conditions to open 5 orders at different time. However trailing stop will only run after the 5th order is opened. How to code the trailing stop to function like OrderSend ()'s take profit? Which is up and running once
Chee Chua
Added topic How far back can I backtest?
How far back can I back test? I tried 1H, and was able to go back to only 4 months. I would like to know how far I would be able to go back? for 1m, 5m, 15m, 30m, 1H, 4H, daily, weekly? Are the amount back testing data available broker dependent? If