@trader-philipps Yeah its more or less the same. I'm not sure about the units here, what does this 1420 even refer to...
Is it %-deviation (1.420%) or some pip fraction?
Posts made by roar
-
RE: About Moving Average levels !!posted in Questions & Answers
-
RE: About Moving Average levels !!posted in Questions & Answers
@trader-philipps I assume he means the level setting in the moving average indicator. Just like the envelopes indicator but for some reason that doesnt do for him lol


-
RE: Get the balance from the history tab ?posted in Questions & Answers
@trader-philipps Oh, right, OrdersHistoryTotal() is the way to go here!
I was thinking about the total lifetime profit so that he could put AccountBalance() to OnInit tab and then run it again in OnTick to get the difference
-
RE: Get the balance from the history tab ?posted in Questions & Answers
@fabiobioware Does your history tab select profit from today, last week, last month, or life-time?
-
RE: Why doesn't my EA place trades when i use a negative (-) value for the MA shiftposted in Questions & Answers
@fxgjg Period doesnt matter, you must understand how the indicators are updated to the chart. Your EA is trying to make the comparison before the data is there (at current candle time):

-
RE: Why doesn't my EA place trades when i use a negative (-) value for the MA shiftposted in Questions & Answers
@fxgjg When you use negative shift, the moving average (red) moves to the left. There is nothing for the un-shifted (yellow) to compare to.

-
RE: About Moving Average levels !!posted in Questions & Answers
Dont use + sign, it adds a raw value. EURUSD is rarely at 1420.0000 (it is now at 1.10622).
I think those MA "levels" are percent deviations.
Try this in the adjust field:
*1.01420 -
RE: Does Anyone Know How To Use The Formula Block?posted in Questions & Answers
@ankhael Double-click this field to add your variable:

-
RE: Please where to locate the button to compile completed project to Mq5 format?posted in Questions & Answers
@olireggae Open a new browser tab, go to your builder, create new mql5 project, copy-paste the mql4 blocks to the new mql5 project
-
RE: Trades and orders and closing in Profit..?posted in Questions & Answers
@fla-ivan I think I got it, the trade limiter was in wrong location:
https://fxdreema.com/shared/EcTK8gBWd -
RE: Trades and orders and closing in Profit..?posted in Questions & Answers
@fla-ivan Oh, it must be the "pips away" setting... Wait a sec, I'll test other settings
-
RE: Trades and orders and closing in Profit..?posted in Questions & Answers
@fla-ivan To switch 0.64 to sell side, just add a condition to the end.
Limit trades with Check trades count.
Here's the thing:
https://fxdreema.com/shared/geEaMqeTc

-
RE: what is the best option for candle body or wick for (candle 0)?posted in Questions & Answers
@khalids222 said
What is the difference between tick volume & trade volume ? I guess this varies between the index value and the tick value
Tick volume = how many price updates per candle
Trade volume = how much $ were traded per candle -
RE: how can i limitate the maximum open tradeposted in Questions & Answers
@smart_verma Ok, then you need to create a "trigger variable" for each of your conditions.
When a condition is passed, set the variable value to 1.
When all variables are 1, open a trade and reset all variables to 0. -
RE: Does Anyone Know How To Use The Formula Block?posted in Questions & Answers
You must first create the variable

-
RE: Manuaaly opened tradesposted in Questions & Answers
You dont have to copy so many blocks, use a loop.
But yeah, I'd like to know more about the hedging strategy here -
RE: How to space out Trades in a Groupposted in Questions & Answers
@yarzu25 Use a counter block right before opening your trade. This opens a trade on every 3rd candle:

-
RE: What Makes a Good Strategy?posted in General Discussions
@titangeorge Sounds good, I hope it works for you!
Personally I have no interest in strategies that I can't backtest, but we all have different styles.


