Is a lot of work, but if you have an idea of the block you want to create ask chatgpt, in the first ask for code that goes in either on tick, on trade, etc. ask for global variables, includes, ask for custom function. Might take a few tries but it should give you all the code you need.
Posts made by jstap
-
RE: How to create custom block?posted in Questions & Answers
-
RE: The plan I purchased is not activated.posted in Questions & Answers
I assume it was through crypto, support is your only option. They should activate it soon
-
RE: PENDING ORDER NOT PLACED CORRECTLY,KINDLY ASSISTposted in Bug Reports
Add your latest link, but this will get the highest/lowest price so maybe place once you end time has happened
-
RE: PENDING ORDER NOT PLACED CORRECTLY,KINDLY ASSISTposted in Bug Reports
According to your link you have both set to open at 01:00?

Then you are using a range for highest/lowest price, but at 01:00 this will be the same. -
RE: Bucket of Positions Not Giving Open Lots - MT5posted in Questions & Answers
You can create like below for as many trade types as needed:
https://fxdreema.com/shared/jyG984D4b -
RE: i think program atackedposted in Bug Reports
Have never experienced this, try and recreate and see if this fixes the problem
-
RE: i think program atackedposted in Bug Reports
Now describe what you mean, everything except the formula is connected to another block?
-
RE: How to set up multi-strategy combination EA? Is there a template? Thank you for providing it.posted in General Discussions
There is no template, it is all about using a different set of blocks with a different group number for each set of strategy blocks
-
RE: Copy the whole project again or only change group number?posted in Questions & Answers
You should be able to attach to a new chart and change the MN
-
RE: How to design a floating profit in a certain direction to increase the position in this direction, a floating loss in a certain direction can not increase the position in this direction, thank you big guy very, very much need helpposted in Questions & Answers
This should do it for buys: https://fxdreema.com/shared/hnsT4FrA
-
RE: About the Chrome extension to download filesposted in Questions & Answers
@mgift-fx Yes you can if it has less than 10 connections
-
RE: CANDLES IN A ROWposted in Questions & Answers
If by candles inn a row you mean 3 and no more. Use a pass once and reset once you get a closed opposite candle
-
RE: How I Can save last trade close priceposted in Questions & Answers
you can get that price from using pink blocks no need to save, what do you mean by close?
-
RE: drawing Rectangle on candle bodyposted in Questions & Answers
Time is not a close (price), it is time, you can select the sae candle but look for the time.

-
RE: Embedded imageposted in Questions & Answers
You can add a logo (picture/image to your screen if this is what you are trying to do), in this is how to achieve. "Gold-Bull-BMP" is the name of the image I was using, and it has to be small enough to work: https://fxdreema.com/shared/NYrqpdJJb
This would be the MT5 code:
// Create the bitmap label
if(!ObjectCreate(0, "Gold-Bull-BMP", OBJ_BITMAP_LABEL, 0, 0, 0))// Set the image file path (inside MQL5\Images folder)
ObjectSetString(0, "Gold-Bull-BMP", OBJPROP_BMPFILE, "\Images\Gold-Bull-BMP.bmp");// Set the X and Y distance from the selected corner
ObjectSetInteger(0, "Gold-Bull-BMP", OBJPROP_XDISTANCE, 150);
ObjectSetInteger(0, "Gold-Bull-BMP", OBJPROP_YDISTANCE, 20);// Set the corner to top right
ObjectSetInteger(0, "Gold-Bull-BMP", OBJPROP_CORNER, CORNER_RIGHT_UPPER); -
RE: Candle Low between two Vertical Linesposted in Questions & Answers
Need more information, an orange draw line will draw.