I just wonder if there is any affiliate program for selling fxDreema
Posts made by vish
-
fxDreema affiliateposted in General Discussions
-
RE: Stop making orders after closing previous oneposted in Questions & Answers
This may meet your requirement
https://fxdreema.com/shared/CIXCfRk8 -
RE: Connecting Binary Options to EA signalsposted in Questions & Answers
Great. It works fine. Thanks
-
How to roundup numbersposted in Questions & Answers
I am printing the Stochastic value on a dashboard through a variable but the value comes with many decimal points. I just need to round up. Upon searching MQL, I found the following function but I dont know how to use this on fxdreema. I want to roundup the value and store into a variable which is printed on the dashboard. Hope someone can help
MathRound
The function returns a value rounded off to the nearest integer of the specified numeric value.double MathRound(
double value // value to be rounded
); -
How to open a chart?posted in Questions & Answers
How can I create a custom code to open a particular chart? MQL provides the following function but I am not sure how to use it on fxdreema
ChartOpen
Opens a new chart with the specified symbol and period. The command is added to chart message queue and executed only after all previous commands have been processed.long ChartOpen(
string symbol, // Symbol name
ENUM_TIMEFRAMES period // Period
); -
RE: How do I find the Chart ID of an opened chart?posted in Questions & Answers
So do I need to know the ChartID first? I just need to know the Chart ID of an open chart. Does it show that?
-
RE: How do I find the Chart ID of an opened chart?posted in Questions & Answers
I have an EA from a signal service that gives signals for buy and sell. I want to run my EA on another chart to capture the signal from that EA which is on the other chart. How can I do it?
-
RE: How do I find the Chart ID of an opened chart?posted in Questions & Answers
How can I use this info to find the ID with fxdreema. Will this work?: https://fxdreema.com/shared/mRL3fWN8c
-
RE: Connecting Binary Options to EA signalsposted in Questions & Answers
I just created a small EA with this block here: https://fxdreema.com/shared/36Ilwuuee I am not sure if I got it right. However, I can not compile, it gives an error as follows:
Compilation errors
'!' - illegal operation useCan you help?
-
RE: Connecting Binary Options to EA signalsposted in Questions & Answers
Thank you very much. I will check this out and let you know if it works
-
Connecting Binary Options to EA signalsposted in Questions & Answers
I have an EA that simply draws up and down arrows for buy/sell signals (https://fxdreema.com/shared/DQzPOuVjd). I am trying to use a tool provided by mt2iq.com to automatically capture the signals from the EA and make buys or sells on IQoption.com.
mt2iq.com provides an MQL Connector Library that can get the signals from the EA (as given here: https://www.mt2iq.com/mt2iq-library).
It provides following Example for placing Up/Down trades on Up_Arrow_Condition and Down_Arrow_Condition of an EA:
int OnCalculate(const int rates_total, const int prev_calculated, const datetime &time[], const double &open[], const double &high[], const double &low[], const double &close[], const long &tick_volume[], const long &volume[], const int &spread[]) { //... ArraySetAsSeries(time,true); // ---> only in MQL5 bool Up_Arrow_Condition = ... bool Down_Arrow_Condition = ... if (UP_Arrow_Condition && signaltime != time[0]) { mt2iq(Symbol(), "CALL", 10, 5); signaltime = time[0]; } if (DOWN_Arrow_Condition && signaltime != time[0]) { mt2iq(Symbol(), "PUT", 10, 5); signaltime = time[0]; } //... return(rates_total); }I guess I need to update the following conditions based on my EA code. Can anyone help me do this?
bool Up_Arrow_Condition = ...
bool Down_Arrow_Condition = ... -
How do I find the Chart ID of an opened chart?posted in Questions & Answers
How do I find the Chart ID of an opened chart?
-
How to identify a specific object created by external indicator by candle ID?posted in Questions & Answers
I have an external indicator that provides arrow signals (up and down). The arrows always appear on candle ID2. An open chart will have so many such arrows. I want to identify the arrow by candle ID (I want to place an order when the candle appears). I tried "Indicator Appear" and "For Each Object" blocks but I don't see a way to identify the most recent arrow by the candle ID. Can anyone tell me how to do this? Thanks in advance.
-
EA for Indicator Window Arrowsposted in General Discussions
I have a divergence indicator (only ex4 file). This indicator shows up and down arrows only within the indicator window (not on the chart). Please see the screenshot. I dont see any object being created when I check with Ctrl+B. I just want to make an EA to open buy and sell when these arrows appear based on the color. Colors of these arrows are defined within inputs but not within Colors (or output buffers). Can anyone help me do it?
