- Search Energy EXCH
-
rangebound replied Jul 7, 2009You dont say what language you're using for your DLL so a direct example isnt easy. The following applies to all though : Mt4 will quite happily allocate up to 64Kb for a Null terminated string so all your DLL has to do is pass back a pointer to ...
Returning strings from DLL
-
rangebound replied Jun 26, 2009Well from your description I have tried to delete the history files for all of my MTF Vhands offline charts and tried to remove their entries in the offline chart register, It seems your M16 file may have a read only attribute. If you cant actually ...
VHands Trading Simulator
-
rangebound replied Jun 5, 2009I'd second that ... Become secure before leaping. Or at least be extremely confident you can bring home enough bacon from trading, and have a large emergency savings pot. Depends what your job is and where you live, but you could do worse than look ...
What lengths have you taken in trading
-
rangebound replied Jun 1, 2009Well you did Ask — There is no doubt that in this fickle market even when people KNOW whats going on (Fed printing money) It often takes a talking head to say it before the players make the move a reality. However ... From a TA point of view ...
How To Make 1000's of Pips by NFX
-
rangebound replied May 31, 2009Hmm, well the easy answer is : yes and no If you use the strategy tester settings Model : Every tick Period : M1 Then you get what i described above, however due to the limitations of MT4 you are stuck creating EAs that are based on, and calculate ...
Looking for high quality tick data for MT4 (broker:IBFX)
-
rangebound replied May 29, 2009No. When you test with tick data in MT4 it first runs through the M1 data. Since it knows the O/H/L/C of each 1 min period and the number of ticks (volume) that ocurred in that minute, it then creates 'volume' number of pseudo random (modeled) ticks ...
Looking for high quality tick data for MT4 (broker:IBFX)
-
rangebound replied May 22, 2009I think thats just a reference to pure deal. I had the same problems too.
Not sure if FXCMs new SB NDD platform is any good. Thinking Futuresbetting is the way to go for seriously pro (pro and pro- client) dealerIs IGIndex new platform gonna be good?
-
123 / Ross hook indicator
Started May 15, 2009|Platform Tech|8 replies
I just posted this into another thread but thought it might standout better on its own. I ...
-
rangebound replied May 15, 2009Its main use is actually a tracking ID throughout the life of an order. E.G. (arb values) Open a Buy stop pending order 1) Ticket = 100, MAGIC = 100 (Supplied value) Buy stop triggers and opens a trade 2) Ticket = 101, Magic = 100 Manually Close ...
About those famous Magic Number
-
rangebound replied May 15, 2009I just had a quick look at these and the code of the different versions and noted the following omissions from the Doc 1) 123's that fail to reach their target (default 100% of the height of the pattern) are displayed in a paler colour than those ...
Searching for Ross hook/TTE indicator
-
rangebound replied May 15, 2009I wrote these back in 2006, and its been a longtime since i used them. You'll probably want to use either show123_rh_bb or show123v2. The initial version 'show123' was rather more simplistic and had significant flaws, however I've included it for ...
Searching for Ross hook/TTE indicator
-
rangebound replied May 11, 2009You need to use the "period_converter_opt.Mq4" indicator rather than the MT4 standard "period converter" script. This can be found in the zip file attached to post #233 of this thread
VHands Trading Simulator
-
rangebound replied Apr 10, 2009for (cnt=0;cnt<30;cnt++) { double cnt_psar = iSAR(NULL,Timeframe,0.02,0.2,cnt+1) ; double cntb_psar = iSAR(NULL,Timeframe,0.02,0.2,cnt+2) ; double cnt_close = iClose(NULL,Timeframe,cnt+1); double cntb_close = iClose(NULL,Timeframe,cnt+2); ...
Coding question
-
rangebound replied Apr 10, 2009Look at what you are doing : double cnt_psar = iSAR(NULL,Timeframe,0.02,0.2,cnt+1) ; double cntb_psar = iSAR(NULL,Timeframe,0.02,0.2,cnt+2) ; double cnt_close = iClose(NULL,Timeframe,cnt+1); double cntb_close = iClose(NULL,Timeframe,cnt+2); You are ...
Coding question
-
rangebound replied Feb 27, 2009On any trading day I start with a quick round up of the daily and 4hr to decide (and note) if there are any areas that could be stalling/reversing points and to see if there are any nobrainers regarding which direction it would pay me to let my ...
Which moving averages work for you?
-
rangebound replied Feb 27, 200921 EMA on all timeframes is good. Why? Open a chart and add RSI(14) and 21 EMA The RSI(14) looks and acts like a smoothed CCI relative to the 21 EMA. When price is at 21 EMA - RSI is at the 50 mark. if price heads down so does the RSI. Since RSI(14) ...
Which moving averages work for you?
-
rangebound replied Feb 23, 2009Eagle4x try here : url but read the thread regarding dual core processors
10 min chart
-
rangebound replied Oct 8, 2008OK. Had a quick look at some of the Ninja forums etc. It seems they've implemented .NET framework in the latet version so you should be OK with DLLs however their support team will not give out examples of DLL calls (Odd!) Anyway. Can you clarify ...
Passing data from one MT4 client to another
-
rangebound replied Oct 8, 2008Well in your case a bubble sort should suffice. So implement the following pseudo code ... string names[10]; // or however large yo want double vals[10]; int maxarray = 9; names[0] = "EURUSD"; vals[0] = IATR("EURUSD",PERIOD,0); // or however you ...
Sorting.
-
rangebound replied Sep 29, 2008Tdion : As Kenz suggests why not use the DLL supplied? I supplied the source and compiled DLL as freeware .... you may use it for any purpose even if it ends up in a saleable system ... Im not about to sue your ass! or claim property rights. As for ...
Passing data from one MT4 client to another