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 How to close multi currency?
How to close multi currency? So I manage to get a multi-currency script working. However when I close, it only closes the pair of chart it is attached to. How do I close multi currency when ea is attached to only a single chart
Chee Chua
Added topic How to close by order sequence?
Closing by order sequence. How to create a loop to check ? if i.e. order 1 + order 2 has profited - close order 3 + order 4 has profited - close 5 + 6 7 + 8 9 + 10 and so on ... Order 1 being having the smallest order number and was opened at the
Chee Chua
Added topic Best method to run MT4 on Macbook Pro?
My Win Vista laptop has die for a few months now. I am thinking of getting a Mac now, either Macbook Air or Pro What are the methods to run MT4 on Mac Anyone mac user here? What are the pros and cons? 1) Bootcamp 2) rEFIt 3) VMware Fusion 4)
Chee Chua
Added topic How does MT4 stop out level closes all orders at once?
How does MT4 stop out level closes all orders at once? Is there a way to close all orders at once just like how MT4 does when you hit the stop out level??? OrderClose function could only close one order at a time Thanks
Chee Chua
Added topic How to modify overlay chart from candle stick to line chart?
How to modify overlay chart from candle stick to line chart? It is quite difficult to see in candlestick? Can i convert the overlay chart to display line chart instead? Thanks //+------------------------------------------------------------------+
Chee Chua
Added topic How do I OverLay tick Chart on another offline tick chart? i.e. GBPUSD on EURUD - Tick Timeframe (Both Offline charts)
How do I OverLay tick Chart on another offline tick chart? i.e. GBPUSD on EURUD - Tick Timeframe (Both Offline charts) I want to add the OverLayChart indicator on an offline chart i.e. !TickGBPUSD,M1 offline onto !TickEURUSD,M1 offline. The 2
Chee Chua
Added topic OverLayChart.mq4 value keep changing
I realized that the value of the OverLay Chart vary as I zoom in and out on the chart. So it can be above or below the overlay pair depending on where the chart begins (i believe) or how much I zoom in and out. Is there anyway to overcome this tiny
Chee Chua
Added topic Global Variable Help
Need help using the following codes. sxTed : Jon this function issues unique numbers //+------------------------------------------------------------------+ //| Function
Chee Chua
Added topic Neural Network using the Encog framework
Anyone into ANN? Do you know how to get Encog neural netwok framework to work with MT4? http://www.heatonresearch.com/ninjatrader/articles/starting-encog25-ninjatrader http://www.devx.com/opensource/Article/44014
Chee Chua
Added topic How can I take sample of the last 60sec in 1 second interval using date and time functions?
How to take sample of the last 60sec in 1 second interval. (Assuming that all predefined variables' values historic data include some kind of time value - correct me if they don't) i.e. (the date and time now is Dec 18, 2010 @ 12:30:27') D'2010.12.18
Chee Chua
Added topic Anyone knows if there is a multiple time-frame offline "second" chart?
Anyone knows if there is a multiple time-frame offline "second" chart? Where I can adjust the time-frame to any seconds? i.e. 1 sec, 5 sec, 30 sec, ... etc Thanks
Chee Chua
Added topic Have you came across any free EA on mql.com codebase that can ran perpetually without failing?
Have you came across any free EA on mql.com codebase that can ran perpetually without failing? Please recommend Thanks
Chee Chua
Added topic How to store the bid and ask price of the last 60 seconds in an array and to use them?
How to store the bid and ask price of the last 60 seconds in an array and to use them? Thanks
Chee Chua
Added topic How to use place a trade at the beginning of every second (regardless of price)?
How to use place an order at the beginning of every second (regardless of price)? Sound simple? But I just cannot figure out how to do it? Should I use date and time functions ? How? Thanks in advance
Chee Chua
Added topic How to create a Magic Number array?
Is it possible to create a magic number array? ex. I am going to make 5 orders and each order has an unique magic number. int ticket= OrderSend ( Symbol (),OP_BUY,LotSize,MarketInfo( Symbol (),MODE_ASK), 3 , 0 , 0 , "My EA" , 12345 , 0 , Green )
Chee Chua
Added topic How to select by pos and compare 2 orders at a time? How to make a OrderSelect loop?
How to select by pos and compare 2 orders at a time? How to make a OrderSelect loop? Ex. I have i Total orders for (int i=OrdersTotal()-1;i>=0; i--) { I would like to loop comparison of (1st with 2nd) orders, (3rd with 4th), (5th with 6th), (7th
Chee Chua
Added topic What is the best way to trade multiple pairs of the same account?
What is the best way to trade multiple pairs? Ex. I would like to trade like 4 pairs on the same account When running EA, I face problem like error 146 , TradeDispatcher is busy. I believe the cause of this is that MT4 is single threading and EA
Chee Chua
Added topic Help! does anyone has stastical arbitrage example?
For starter, How can I trade multiple pair? .... string pairs[ 18 ]; extern string symbol1 = "EURUSD" ; extern string symbol2 = "USDCHF" ; ... pairs[ 0 ] = symbol1; pairs[ 1 ] = symbol2; ... int ticket= OrderSend
Chee Chua
Added topic Is it possible to close all 100 open positions in 1 sec, in one go?
This is the close all order script that I use void CloseAll() { int ctotal = OrdersTotal (); for ( int j=ctotal- 1 ;j>= 0 ;j--) { OrderSelect (j, SELECT_BY_POS); int type = OrderType(); bool result = false; switch (type) { //Close opened long
Chee Chua
Added topic Help! How to modify the standard trailing stop code for dealing desk to be used for ecn?
How to modify the standard trailing stop code for dealing desk to be used for ecn? This is like the standard trailing stop code that is everywhere. Works for broker that does not charge commission. When I try testing on an ECN broker, some of the