I use buttons all the time, if it's not showing there must be something wrong if you add a shared link the reason why can be seen
Posts made by jstap
-
RE: Buttons Not showingposted in Questions & Answers
-
RE: profit prevous day then...posted in Questions & Answers
I haven't tested but this should do as you want: https://fxdreema.com/shared/FeiPkW9ae
-
RE: How to Add Output Variable in Custom Blocks?posted in Questions & Answers
It is quite advanced to create blocks in Custom Studio, if I do this I use Chat GPT to create the necessary code, in this post it will say what you need to do, you can pretty much copy and paste my post into ChatGPT and tell it what you are doing, compile the code in FX (maybe a few times with corrections (you can ask ChatGPT to correct)). This was the post: https://fxdreema.com/forum/topic/21088/custom-function
-
RE: BUY AND AT EACH GRID LEVELposted in Questions & Answers
You won't get much help with such limited information
-
RE: I need some help.posted in Questions & Answers
Find which block is causing the trouble, is probably the once per day, try linking out to test, then maybe use a once per (daily) bar.
-
RE: Countifposted in Questions & Answers
You could ask Chat GPT, it might give you some useable code
-
RE: Candle crosses EMA to closedposted in Questions & Answers
Would be something like this: https://fxdreema.com/shared/2T9kwOnS
-
RE: Candle crosses EMA to closedposted in Questions & Answers
Terminal variables are stored on your computer, so switching or restarting shouldn't delete the value. In fact, the normal point is to make variables safer in case of a crash/restart
-
RE: Countifposted in Questions & Answers
I have not tested but this should do it: https://fxdreema.com/shared/o101V64rb
-
RE: One trade per condition meetposted in Questions & Answers
If within 1 candle once per bar, if not use a flag to allow/disallow trading, just make sure it gets reset
-
RE: highest Price from rangeposted in Questions & Answers
No it gets the highest price of the candle (the wick).
-
RE: How to code condition block for change % of an indicatorposted in Questions & Answers
You will need to get the value at a given place, by doing this:
// Define two numbers
num1 = 50;
num2 = 70;// Calculate the absolute difference
double absoluteDifference = MathAbs(num1 - num2);// Calculate the percentage difference relative to num1 (or you could use num2 or average)
percentageDifference = (absoluteDifference / num1) * 100;Num1 and num2 are the 2 indicator values, you will need to create the variable to save the result.
-
RE: Buy and Sell Alternatelyposted in Questions & Answers
Flags are easiest to understand, above buy/sell check the flag, in a separate tree set the flag true, and in another tree set the flag false. What you use to set the flag is whatever make a trade make sense. Once you have this together you can add a shared link and say what's mot working as expected.
-
RE: HELP GUYS! Can someone walk me through how to change the name printed on my EA screen to my desired name anytime i trade i brings the sellers nameposted in Questions & Answers
Under the buy/sell block use a orange draw text block
-
RE: I m recieving the below warning how can i fix this??posted in Questions & Answers
Long is just a long int, if it's just a warning not an error I wouldn't worry about it
-
RE: How to Use GMTposted in Questions & Answers
This depends on how you are using it, if using GMT and a set time use a later time
-
RE: How to Add Output Variable in Custom Blocks?posted in Questions & Answers
Yes you can add variables/constants to either of these boxes
-
RE: EA works with some brokers and not others?posted in Questions & Answers
Not that I know of, maybe seeing the project may show something, but I doubt it...