- Search Energy EXCH
-
jeanlouie replied Feb 16, 2023This may or may not fit the bill, I recall it's alerts for the current session only. url
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 16, 2023Minus the slope color, it's exactly the same. Double check the settings you use when comparing it to the built in ma indicator.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 16, 2023That would be the chart re-scaling prices to fit in the visible window. To turn that off/on, right click in the chart, common tab, scale fix 1-1. If on, this would result in prices not scaled to fit in the visible window like the pic.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 16, 2023For most purposes just leave it to the value of prev_calculated in OnCalculate(). If the chart history is updated, then the prev_calculated value is set to 0, and oncalc() is run. When prev_calculated is 0, you can start by clearing all the drawing ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 16, 2023If the below pic isn't what you mean, which looks like the pic you posted, then I don't think anyone knows what you're talking about.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 16, 2023The vline is where it's time says it is. Refresh your chart or tell me how to replicate it.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 15, 2023So you mean horizontally, the live candle is near the middle of the chart. On the toolbar, there is a button for chart shift, which puts a draggable indent on the right hand side. If the button is missing, right click on the toolbar area and go to ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 15, 2023The information you'll need is a list of the instruments used, then the chart id's, and the names of the manually drawn rects. Assuming all charts open are desired to be checked. Gap checking: - keep an array of symbol names somewhere - replace the ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 14, 2023You can go to where drawArrow(), see how it makes arrows, make a new function similar to it like drawTextThing(), and use objectcreate(...obj_text...) and objectsetstring(...objprop_text...thetextvalue). You can highlight the inbuilt functions like ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 13, 2023If you mean the vertical space that prices take up inside the chart window- Price_Scale_vertical_space - adjust the proportion of the vertical space that prices are drawn to - scale as a decimal percent - can scroll history and effect remains
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 12, 2023You can loop up from the live candle, counting completed sessions found, draw the 1st and 4th completed sessions.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 11, 2023That order block indicator doesn't use any buffers, one is listed but doesn't seem to be used. The about tab of that indicator says it repaints. You can run the indicator in the tester to see for yourself if it repaints or not.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 10, 2023- to paste code in use the </> button in the post window upper right - the emz indicator is a 0 based oscillator, the val/val_prev are the return values for icustom on emz, comparing it to the previous close price is useless - check parameters you ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 10, 2023mql4/5 documentation, online or through help in metaeditor. Starting from scratch it would be more practical to get the source file of a single moving average indicator, and see how it does things, highlight certain functions and press f1 to see the ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 9, 2023Something like, untested: //time of previously completed candle long t = Time[1]; //some stuff to be used bool T_any_engulf_F_only_in_rect = true;//maybe as an input with better description //only run on a new bar if(new_bar(t)){ //check for a ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 9, 2023Not currently and not any time soon. On mql5.com there should be several related free indicators in the market or code base.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 9, 2023Looks sorted out in the other thread, but some points: - error 4200, you can look up the doc for error codes to see what it is - the while loop doesn't have any condition that will stop it - the return(0) inside the while loops only occur if the ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 9, 2023Contact the author/maintainer in the about tab.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 8, 2023Requested Session_Open_Lines - prints open lines for up to 5 sessions - start hours for each - durations for each - label option for each - style n color options too v1.01 - start time includes minutes
I will code your EAs and Indicators for no charge