@khalids222 .. @jstap have given you advice on how to start, showing you one step of a few others you still need to do, he is not gonna built your expert that you have to do on your own!! I have done what you are asking already, and have posted the expert in the forum. Just take the time to search for it. Check out Profit math. I have posted an already finished expert with averaging.
And now for some friendly advice =
Don,t get upset and all grumpy!! .. Mr @jstap is not under obligation to help you, he does this for charity and from the goodness of his heart. So does every one here. So keep your tone down!!
Posts made by AlphaOmega
-
RE: How do I get average? For open positions multiplied by lotsposted in Questions & Answers
-
RE: Indicator code change - coders pleaseposted in Questions & Answers
@jstap oh!! ok... yes, I am back to your line indicator condition to try and get a good result... The problem I have is that the PA change in real account. Some time or day its volatile so you need a quick thinking indicator.. Sometime the market is slow and you need a more lethargic indicator. I don,t know what is the best combination of indicators working together. I thought this Wavemtf indicator will do both.. I asked this guy to code it like two years ago already but have never used it because I do not trust it completely... But thank you for your time brother.
-
RE: Indicator code change - coders pleaseposted in Questions & Answers
@jstap thx brother for trying... what you mean by do it on fx?
-
RE: Indicator code change - coders pleaseposted in Questions & Answers
@jstap I tried loading the file when I posted the first time but it says I do not have enough privileges?? don't know why this was? Now suddenly its working again?

The indicator:
0_1648657507355_WaveMTFv2.mq5
The Instructions:
But, if you intend to integrate WaveMTF function into another EA, here I explain the procedure.Starting at the top, see the ExampleEA.mq5 source program.
Lines 39-46, are enums for the options for using timeframes in the WaveMTF function. By default, I specify TF-
M15, H1, H4. You can change it by clicking the dropdown on Experts properties.Experts input properties, starting at lines 50-68. You have to read it, so that you understand every input parameter.
I put all variables and functions in the struct class to speed up program execution and save computer memory usage.
Struct classes from lines 74-161.The very important WaveMTF indicator functions and variables for this EA are:
Variables Arrays: XBB, XLB, XKB.
ENUM Timeframes: Tmf, TF1, TF2 and TF3.
Function:
WaveMTF, WaveKTF, GetDirection, GetTFUse, RefreshPrice, SameAs, IMA and IndicatorSignal.Function calls to obtain WaveMTF signals, starting on lines 242 and 243.
If the trade variable value = 1, it means BUY, and the value -1 means SELL.If your EA doesn't use struct class, then the changes you have to make are:
- Remove all variables from the struct class, and put them under the expert input parameter.
- Edit all variable names written with the wm prefix. for example wm.pip, becomes pip. (without the prefix, wm.)
- Edit all function names with the WMf:: prefix, for example
int WMtf :: IndicatorSignal (void), becomes int IndicatorSignal (void). - Delete all struct classes starting on lines 74-161.
If you want to rename the ExampleEA name with another name,
please don't forget to also change the EA name I created on line 10 and 194.That's my explanation, I hope you understand and can apply it well.
-
Indicator code change - coders pleaseposted in Questions & Answers
@jstap and Co.
Could a coder do me this favor please.
I have an indicator which I have to change the code to use in Fxdreema. I have the instruction from the creator of how to change it so its compatible with Fxdreema, but because I am no coder it all sounds alien to me and I will make a mistake. The creator also do not know how Fxdreema works so I cannot expect help from him. So I want ask if anyone with coding experience can help me with this please
Thanks in advance -
RE: Profit robotposted in Questions & Answers
@emreizmir
Write it down on a paper, with pictures as you trade manually then .. Take one step at a time and code in Fxdreema..
only one step.. look for examples in the forums and the tutorials ask the guys here to help with your one step.
When it is perfect you start with Step no 2 and so you go on till your strategy is 100%
How can you eat a big ox? .. One bite at a time till its finished!! Never give up!!! -
RE: Profit robotposted in Questions & Answers
@emreizmir Do not give up!! All experts need to be maintained monthly because the market is a big animal with lots of moods
-
RE: Profit robotposted in Questions & Answers
I have good experts for 5 years and I posted some already here
-
RE: How to get line/MA slopeposted in Tutorials by Users
@jstap at last SUCCESS!!! - Thank You very much brother

-
RE: How to get line/MA slopeposted in Tutorials by Users
@jstap Thank you.. Let me see if its going to work.. cannot be that easy.. will give you feedback on my progress.. appreciate your help!!
-
RE: How to get line/MA slopeposted in Tutorials by Users
@jstap The code was originally started by roar and what he did was to put the lines created in variables.. This means the object on chart name changes every time the line moves.. This means that I cannot use the name as reference.. So I tried using the object color.. but the condition cannot find the object by color. If I use the variable names in the condition, the expert will not start up in meta trader.. ok.. let me give it another go, I must be missing something here.. Thank you
-
RE: How to get line/MA slopeposted in Tutorials by Users
@jstap Could you give some idea as to how would you identify the object on chart please?

https://fxdreema.com/shared/MWYKe20Td -
RE: How to get line/MA slopeposted in Tutorials by Users
@jstap Thank you... I understand the language you writing but I do not totally understand the the logic. I will put the blocks off for now and just work on the draw then add as I go along.. This is very very advance for me.
-
RE: How to get line/MA slopeposted in Tutorials by Users
@jstap Dont know what happened there sorry..
https://fxdreema.com/shared/PX0WF1Pmb -
RE: How to get line/MA slopeposted in Tutorials by Users
@jstap I need a helping hand here please brother.. I tried to compare the setting in your code to give me a comparison to this below photo EURUSD H1... but I cannot get close, I tried a million times.... would you be able to assist please? The problem is the timing, The Trend line should only move if a new bar close away from the previous Support or resistance Trend line. If you could create some sort of band in which the bottom or top candles close on a particular time frame.
In other words:
The code you created should scan the different time frames to find where candles has close in the same trend then draw the trend line and keep with it till a candle breaks that band. I hope I explained it the correct way

https://fxdreema.com/shared/P6ZIZHGwchttps://fxdreema.com/shared/P6ZIZHGwc -
RE: How to get line/MA slopeposted in Tutorials by Users
@jstap gonna try it .. because I have stoch/mach combination but need a trend direction as well.. thank you once again!!
-
RE: Controlling two parts - Buys side and Sells sideposted in Questions & Answers
@jstap maybe you have a good strategy I can test?... the skeleton works like a bomb now

