@l-andorrĂ
Agree. That would avoid any confusion
Posts made by sktsec
-
RE: Display flags in commentsposted in Questions & Answers
-
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]
-
RE: Trailing money loss amount: What it is referring to?posted in Questions & Answers
@ambrogio
Thanks a lot for your explanations, which make me understand that % of Trailing money lose amount is referring to the abovemost input in Trailing money lose mode. But I cannot figure it out what happen when Trailing money lose mode is set to % of group profit. Still thinking...
-
Trailing money loss amount: What it is referring to?posted in Questions & Answers
The block Trailing money loss (group) requires the user input of step mode as well as start threshold, in terms of either actual money or trailing money loss amount.
I know trailing stop in a sense that SL is set by reference to past unrealized max profit. But what does the trailing money loss amount really mean and how can I use it?