- Search Metals Mine
-
buju replied Nov 6, 2019I found this strategy to be quite interesting so I have coded a indicator to simplify the strategy and also to scan all the currency pairs.
H4 Mobile Trading Simple Strategy
-
buju replied Sep 17, 2019ok chaps , i havnt read all the posts , but this is something ive been working on for over 2 years now, im a pretty strong coder on mq4 and my efforts have evolved into dozens of indicators and algo's . im close now , very close to cracking this ...
Currency Strength Indicator
-
buju replied Dec 5, 2018maybe im crazy , but I sometimes 'code' stuff in my head , and last night as i was falling asleep i 'coded' what i would need to do using just 1 global variable
in order to make the script 'automatic'. i would just have to have the checks in ...calling scripts from indicator
-
buju replied Dec 4, 2018ideally my vision was to pass inputs to the script and the script would automatically execute, my implementation does not do this , I have thought of a workaround , and that is for the script to read global variables , but that could be problematic ...
calling scripts from indicator
-
buju replied Dec 4, 2018emmzett thank you for the explanation , but I've used a hot key solution in the end. - set up a hot key in mt4 on the script , in this case ctrl-M - used this code to call it: ..... keybd_event(17, 0x9d, 0, 0); // Ctrl Press keybd_event(77, 0x9e, 0, ...
calling scripts from indicator
-
buju replied Dec 3, 2018it is W void ScriptCaller::callScript(int ordinal) { PostMessageW(m_chartWindowHandle, m_mt4InternalMessage, MT4_WPARAM_START_SCRIPT, ordinal); } { m_mt4InternalMessage = RegisterWindowMessageW(MT4_INTERNAL_MESSAGE); }
calling scripts from indicator
-
buju replied Dec 3, 2018thanks Charlo unfortunately Im not familiar with c/c++ , that was never my background in programming , but hey , Im going to see what I can do.
calling scripts from indicator
-
buju replied Oct 17, 2018expire_date = "2018.11.31";
MCTC 3.1 by Buju - Multi Currency True Currency
-
buju replied Jun 30, 2018Hi there Thank you so much for your input and assistance . I have updated the first post with the new version 4 , combining all the features of the previous versions into one. - change arrow sizes and colors - please refer to: url - process ...
How much more easy can this get?
-
buju replied Jun 29, 2018hmm I can possibly see why now , just looking at the screenshot , although v1 only had 5 buffers and very few calculations. Maybe we are loosing out on lost opportunities by having more buffers ??? The screen shot shows v2 (20 buffers against v3 100 ...
How much more easy can this get?
-
buju replied Jun 29, 2018Hi Ezzy Im interested to know why v1 is your fav over v3 ?
How much more easy can this get?
-
buju replied Jun 28, 2018post the journal and expert logs and a screenshot , lets have a look also check broker prefix/suffix , example EURUSD.a , maybe you need to put that in

How much more easy can this get?
-
buju replied Jun 28, 2018seriously ? I suggest you give up trading forex , but then the new version actually has arrows. new version 3 has been posted / updated in the first thread above.
How much more easy can this get?
-
buju replied Jun 27, 2018here is version2 , it has a lot more buffers and a lot more calculations , also the option of setting the percent threshold , but I personally recommend 85 percent or above , even set it to 100 percent if you like. there is also a option to view the ...
How much more easy can this get?
-
buju replied Jun 20, 2018Im busy testing with only these settings: IE only: Label1Buffer[i] = (count1 /(bars-i) )*100; if (count1>0 && bars-i > 0) { Label1Buffer[i] = (count1 /(bars-i) )*100; /* Label2Buffer[i] = (count2 /(bars-i) )*100; Label3Buffer[i] = (count3 /(bars-i) ...
Trade by chance
-
buju replied Jun 20, 2018here is one I coded last night , note: this is completely experimental , I dont even know if its worth it , but its just something Im trying out. I post the full source code , maybe some one here can mod it and make it better ?? or add some ...
Trade by chance
-
buju replied Jun 13, 2018This is what we would have traded today , the best moving pairs , so today it is the best moving downward pairs as on the screenshot.
Inputs bars - Number of bars to process. font_size - font size for the side meter. spacing - spacing for the ...MCTC 3.1 by Buju - Multi Currency True Currency
-
buju replied Jun 13, 2018You are using a 1 hour chart with the timings every 2 hour ( default) , so its only getting info from 2 bars. I suggest if you are using the 1 hour chart set up the times to every 12 hours.
MCTC 3.1 by Buju - Multi Currency True Currency