- Search Energy EXCH
-
jeanlouie replied Aug 16, 2023Open the csv file in notepad, to see the raw text only output, it'll probably be decimals as you expect, with ;(or your chosen) separators. If so then the issue is a setting in excel, copy n pasted from url : Click the File tab in the Ribbon. ...
Data export to CSV
-
jeanlouie replied Aug 16, 2023Steps would be to get a target time to use, then get the index of a candle on a particular tf you want, that includes that time, and then get the ohlc at that index. Something like- //hour setting int hour = 10; //target day int i_day = 0; //add the ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Aug 16, 2023Written another way, your setup is basically: a_limit = 2; a_sl = 0; b_limit = 3; b_sl = 1; c_limit = 4; c_sl = 2; When price reaches limit x, move to sl y. Say for a buy order, if you dont want the A condition to be re-triggered when price falls ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Aug 14, 2023Sell order types have their open prices based off the bid, not ask. When triggered, pending order types become market order types, so on every tick check if a sell order op_sell exists, and use its orderopenprice() to check distances to current ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Aug 13, 2023That is added, and option for popup, push and email for others.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Aug 13, 2023Use the information it's giving you, the error code printed out is 130, you can look it up and it'll say invalid stop, ie there is an issue with the stop loss price in ordersend. You can further check the minimum distance to the entry price a sl can ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Aug 12, 2023Read the documentation for ordersend, it's return value is a ticket number, what happens if there are invalid settings to ordersend and the broker can't accept the order request? The attached has an example of printing out errors and settings for ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Aug 11, 2023Seems fine - alerts on completed candle - no alerts on loading - symbol name and period to alert msg
I will code your EAs and Indicators for no charge
-
jeanlouie replied Aug 10, 2023Should be good to go.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Aug 9, 2023Just look for any simple ea, ma crossover for example, get a bunch of them and compare. Google search terms of mt4 ea example, template, guide, etc, mql5.com also as a codebase you can search eas.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Aug 8, 2023If you're not already aware or familiar with it, I'd recommend you setup an mql5.com account, and hire a freelance coder. Reasons being: - while applicant id's are hidden, their stats of project count, arbitration count, and feedback are shown, and ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Aug 6, 2023Just save the icustom values and do what ever you want with it, the main point from earlier is that you check its value isn't emptyvalue too, not just not 0. For a trend bias from that indicator it would look something like: int get_direction() { ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Aug 5, 2023- iCustom returns the indicator value, the default empty value for an indicator is usually not set as 0 - boolean values are nothing/not set/0 for false, and something that isn't 0 as true - print out the value of the icustoms for both buffers at ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Aug 5, 2023Account margin is the amount set aside to maintain open trades, if there are no trades open then the margin is 0, and that explains the zero divide error that may show up and freeze the indicator. If no trades are open then I've just set the margin ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 29, 2023Unfortunately I wont get around to it.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 24, 2023Font size values added for the headers and the rest so you can make them smaller or bigger.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 19, 2023Candles_2_Consecutive_Big_n_Small - option for candle sizes on wicks or bodies - full alerts
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 19, 2023Press those colored buttons, if you dont see a trendline show up, then load the indicator on an empty chart and try it.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 18, 2023That's not my/theIndicator's trendline. Use the trendlines made by the indicator when you press the colored buttons to the left of the text input on the chart.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 18, 2023Check the alert candle is the one you expect, live or completed candle, there is an option near the top.
I will code your EAs and Indicators for no charge