Try:
Replace the variable in blue color with 1. For the adjust item: *NormalizeDouble(Range_Low,5)
Posts made by sktsec
-
RE: How to Round to decimal placesposted in Questions & Answers
-
RE: How to Round to decimal placesposted in Questions & Answers
@Jim67
Try:
Replace the variables with 1, then replace = with * -
RE: Display flags in commentsposted in Questions & Answers
@l-andorrĂ
Agree. That would avoid any confusion -
RE: How to do I build a multi timeframe\symbol portfolio?posted in Questions & Answers
@gooseman
I think the code by @roar have solved your problem.Anyway, if you are interested you can try inserting the following blocks above the block "No position"
https://fxdreema.com/shared/htWDZuxqc -
RE: How to do I build a multi timeframe\symbol portfolio?posted in Questions & Answers
I've make some modification to your shared link by adding a time interval just after switching to any other symbol/TF :
https://fxdreema.com/shared/C9f0bjrG
NB: After appending to your own project, you have to check to confirm the item in 27 should still the same as the one in 26. (sure you can change it to any other number) -
RE: MathRound questionposted in Questions & Answers
@Tulefi
Maybe you can define a new variable and then using the Modify Variable blocknew_price = MathRound(original_price)
-
RE: Highest Value of RSIposted in Questions & Answers
@BravoOne
Try add a Condition Block below:
Check if the current RSI value == found maximum value (val). Also in the variable list of this block, if condition was true: save the value of the id variable (id) to another variable, say, max_id. -
RE: How to do I build a multi timeframe\symbol portfolio?posted in Questions & Answers
@gooseman
Probably due to retrieval of data from some symbols, as it takes time, in particular if those symbols and TFs were not opened in any other chart window.
Are you reading multiple symbols? Have you tried with only one symbol first and does error still persist?
BTW, CPU speed seems more important nowaday as RAM is often adequate. -
RE: All Blocks Resized + Lost All Connectionsposted in Bug Reports
@fxDreema
Everytime you talk about the 1000 blocks, I raise a question to myself: is it a joke? -
RE: How to do I build a multi timeframe\symbol portfolio?posted in Questions & Answers
@gooseman
Block 18. Try:
Set variable to Text (you have set it to numeric) -
RE: Using Copy Trader with EA?posted in Questions & Answers
Use FXBlue copy trader on a new chart of the same terminal, and it would work find. You can specific the trades you want to copy, say, by filtering the trade comment.
-
RE: about support/resistanceposted in Questions & Answers
On the contrary, many implemented SR in their EAs/indicators. But no one can tell if it really has better edge of winning
-
RE: help build a simple EAposted in Questions & Answers
@rektaldo
You may study some tutorials first -
RE: How close position and open new order every timeposted in Questions & Answers
Just add put both under your condition
-
RE: Fast MA close to Slow MAposted in Questions & Answers
It is natural and is some type of support and resistance.
-
RE: Action on Tradingview alertposted in Questions & Answers
@talshemtov
There should be some commercial EA doing this but may charge monthly.
Another solution is using python to set up a server with something like flask and then forward the order to MT4/MT5.You may google both for further information
-
RE: Chart patternsposted in Questions & Answers
@ZakTrading
Sure many such indicators exist. But they probably do not work as you expect. You need DIY to fit your own idea. -
RE: Trailing money loss amount: What it is referring to?posted in Questions & Answers
After a second thought, I think the start trailing should not choose the percentage of trailing money loss as parameter whenever the trailing loss has used the percentage of profit as reference. Otherwise, the trailing will either start immediately or never start at all. [Problem solved]