@Peinjo
Try to reach @roar. He can offer paid services and is known to be one of the best in this forum.
Posts made by sktsec
-
RE: Fxdreema Freelanceposted in General Discussions
-
RE: Here, take this profitable eaposted in Tutorials by Users
Read this post from the very beginning
-
RE: Written Conditionsposted in Questions & Answers
-
Try to use the block Comment(ugly) to see the output value of any variable. You will get all your answers.
-
NormalizeDouble() is another function that could help you get round values
-
MathSqrt() is a square root function rather than a square function
-
The variable you defined is in global scope. Therefore, you can use the current output at the next block.
-
As you are a programmer, you may wonder how the MT4 program flows. It a real time computation problem. That means a new calculation may start before you has finished the last once. That's why slow PC and a complex EA is problematic
-
-
RE: Written Conditionsposted in Questions & Answers
You can do it in a more simple way with the block Modify Variables.
In the block, enter the input box : MathSqrt(your_variable)
Yes. Your can input a function in the box!
-
RE: How to get level of price of channels?posted in Questions & Answers
https://fxdreema.com/shared/sGEWJfiV

Getting the center line value can be done by selecting its name. But getting its channel level values seems not straightforward. Further knowledge on the function/formula for the channel width is needed.
-
RE: What do you use to backtest?posted in Questions & Answers
@GTOAT777
Tradingview is trending. It seems quite indicator based which is not my style. Sure the strategy development is easy and user experience is good.Trading Station is good and reliable, but LUA is too difficult for me to write practical EA.
Some may use MultiCharts, but it was once a nightmare to me. It is easy to write a simple program, but not really something you would want.
Python sounds good if you use AI. Believe me, it is very time consuming to develop a simple AI project for trading. You need a lot of effort to 'guess' what hypothetical model would fit the market.
Zorro-trader claims that it can trade with AI using C programming readily. However, no way I can find it practically work. Much marketing + poor SDK/support
-
RE: introduce me -> support and resistance indicatorposted in Questions & Answers
People give different definitions for support/resistance
-
RE: I can't use my experts in MetaTrader 4posted in Questions & Answers
Many reasons. Don't know the timeframe and any custom indicator you use. In my case, I often found 1-minute tf and custom indicators were problematic.
Windows 11 is not the problem, but the speed of your PC matters.
-
RE: Open a sell when price crossing my custom indicatorposted in Questions & Answers
In the options of 'What to get' for your custom indicator, you selected "Candle ID by Visible ID", are your sure what it is?
-
RE: Once per minutesposted in Questions & Answers
@alok
That means the logic passes the block at most once every 10 minutes.

-
RE: red news filterposted in Questions & Answers
@l-andorrà
I think he want to say: read news filter. -
RE: Fxdreema not allowing to load my Indicator:posted in Questions & Answers
Check the source code of your indicator,
SetIndexBuffer(0,BufferPOS,INDICATOR_DATA);
SetIndexBuffer(1,BufferColorsPOS,INDICATOR_COLOR_INDEX);
SetIndexBuffer(2,BufferNEG,INDICATOR_DATA);
SetIndexBuffer(3,BufferColorsNEG,INDICATOR_COLOR_INDEX);
SetIndexBuffer(4,BufferPosTMP,INDICATOR_CALCULATIONS);
SetIndexBuffer(5,BufferNegTMP,INDICATOR_CALCULATIONS);It seems that the last parameter in each setindexbuffer() is not defined yet. Are you sure the file is the whole source code?
Maybe you can try removing those parameters and see if the indicator works fine. Then import again.
-
RE: dont trade if rangedposted in Questions & Answers
@massoudsl
Use the block " Indicator moves within limits" -
RE: Fxdreema not allowing to load my Indicator:posted in Questions & Answers
Check if your indicator has any buffer. Maybe it only create some objects
-
RE: custom indicators or My indicatorposted in Questions & Answers
Have you turned on the EA in live trading?