- Search Crypto Craft
- 424 Results (71 Threads, 353 Replies)
-
chimoong replied Dec 10, 2022Thanks BestTraderEv, I added all the codes according to my post at url and your block of codes of GetIndexFirstTfBarOfDay script, and renamed the "GetIndexFirstTfBarOfDay" to "strSf". I added 2 conditions in the export script as follows :- strSf, ...
I will code your EAs and Indicators for no charge
-
chimoong replied Dec 10, 2022Hi BestTraderEv, my apology for my late reply. You gave me the ex4 script but I need mq4 source codes as I'm learning coding, hope you can provide me your source codes for the similar relevant posts too :- url url Thanks
I will code your EAs and Indicators for no charge
-
chimoong replied Nov 26, 2022Hi BestTraderEv, hope you can help me 3rd time on this History Export Script below as I had been trying countless time but yet failed. I created a simple export script as follows :- int mxBar=100; int TF=60; int start() { int handle; ...
I will code your EAs and Indicators for no charge
-
chimoong replied Nov 26, 2022Hi BestTraderEv, thank you so much for your 2nd time of kind help.
I will code your EAs and Indicators for no charge
-
Script to Draw Multiple / Series of VLines
Started Nov 26, 2022|Platform Tech|0 replies
Kindly ignore this thread as FxFactory does not have an option for me to delete this post, my ...
-
chimoong replied Nov 26, 2022Hi coders, I have written a simple script to draw a VLine on chart for a sizeable big bar as follows :- void OnStart() { int bigBarSf=0; for(int i=1; i<=1000; i++) {double cOp0=iOpen(Symbol(),15,i), cCs0=iClose(Symbol(),15,i), ...
I will code your EAs and Indicators for no charge
-
chimoong replied Nov 16, 2022Thanks BestTraderEv.
I will code your EAs and Indicators for no charge
-
chimoong replied Nov 16, 2022Hi Tzamo, you're very kind. With the video, I can understand "remainder of division" now. 100 is Antecedent and 30 is Consequent, one should start focusing on the Consequent (30). Each unit / round is a "30-fixed numbers", 100 / 30 = 3.333, take the ...
I will code your EAs and Indicators for no charge
-
chimoong replied Nov 16, 2022Thanks Tzamo. My question is yet :- double residual1 = 100 % 30; ... why the answer is 10.00000000 ? how to get this 10.00000000 ? double residual1 = MathMod(100,30); ... why the answer is 10.00000000 ? how to get this 10.00000000 ? The MathMod ...
I will code your EAs and Indicators for no charge
-
chimoong replied Nov 16, 2022Hi, I'm trying to figure out what is % (Residue of division : url ), for example :- double residual1 = 100 % 30; ... why the answer is 10.00000000 ? how to get this 10.00000000 ? If I write :- double residual2 = 100 % 30.1; ... ended up with an ...
I will code your EAs and Indicators for no charge
-
chimoong replied Nov 15, 2022Hi BestTraderEv, you're brilliant, yes, it works to stop the HLINE at the destinated right bar. I tested on my script, it can work accordingly ... Thank you.
I will code your EAs and Indicators for no charge
-
chimoong replied Nov 15, 2022Hi BestTraderEv, I have tested the OBJ_TREND, it works well on start time (but HLINE will be the full width to the right of the chart), but I have an issue with the end time as it doesn't stop at all to the right. Let's say, if I want to get the ...
I will code your EAs and Indicators for no charge
-
chimoong replied Nov 15, 2022Hi Iwudz, script attachment and picture for your mod. You can also look at this url picture for better understanding. Thanks.
I will code your EAs and Indicators for no charge
-
chimoong replied Nov 14, 2022Hi BestTraderEv, I accept your comment and criticism, but I had been trying very hard but yet failed (before I posted the codes into FxFac). FYI, I do not have programming background at all. I studied accountancy previously, but yet it is the ...
I will code your EAs and Indicators for no charge
-
chimoong replied Nov 14, 2022Thanks so much Iwudz, yes, resolved, the script is working now.
I will code your EAs and Indicators for no charge
-
chimoong replied Nov 14, 2022Hi Iwudz, thanks for your advice. I have changed the codes accordingly, yes, both VLINE and HLINE are shown, but the lines are :- 1) all in red, not the colours that I want, i.e. the DodgerBlue. 2) all in STYLE_SOLID but not the STYLE_DASHDOT. Could ...
I will code your EAs and Indicators for no charge
-
chimoong replied Nov 14, 2022Hi coders, kindly see below codes on my simple script, I would like to draw 2 lines (VLINE and HLINE) immediately or concurrently whenever the conditions are met on chart :- void OnStart() { int MAUp1Sf=0; for(int i=1; i<=500; i++) {double ...
I will code your EAs and Indicators for no charge
-
(binned per thread starter's request) Script to Draw VLINE and
Started Nov 14, 2022|Recycle Bin|0 replies
Kindly ignore this thread because I cannot delete it, thanks and sorry.
-
chimoong replied Nov 14, 2022Hi FA, thanks for your reply. Yes, I had been trying with a single loop but failed, then I tried 2 loops but yet failed. I don't know where I went wrong in order to get the output shift # of the "startSf" if the lower TF bars are exceeding more than ...
Need Help to Correct my Script (to Export History)