@titangeorge Well, the issue ist that the google block or turn Off/On blocks didn't show any message in the journal that the defined block turned off. That's why I used the flags. One could also just define a boolean variable and check it's state which is set by button click.
I think there are several options once the buttons work well.
Best posts made by trader.philipps
-
RE: Turning Exit Rule Blocks off with button on chart.posted in Questions & Answers
-
RE: EA with object on the chartposted in Questions & Answers
@biztet Easy as I wrote before. You just need to import your indicator to fxdreema as usual. Than have a block that uses the indicator. I tried to do so like this ..

Works fine.

Btw. I managed to get your indicator to work, It looks like it takes a day in order for it to draw something and I was just too impacient or an too low timeframe.
-
RE: How do I have drop down parameterised for optimisationposted in Questions & Answers
@jzfusion Define a constant for the desired field
For MA method use datatype ENUM_MA_METHOD
See valid values (for default value) here: https://www.mql5.com/en/docs/constants/indicatorconstants/enum_ma_methodFor MA price use datatype ENUM_APPLIED_PRICE
See valid values (for default value) here: https://docs.mql4.com/constants/indicatorconstants/prices

Once you define the constants, you can use them each time you use the MA indicacator by rightclick on the correspondant field.

-
RE: About Moving Average levels !!posted in Questions & Answers
@roar If it's the level, I think it's a pip or point fraction
-
RE: MAJOR PROMBLEM! EA NOT PLACING TAKE PROFIT!?posted in Questions & Answers
@ankhael With the provided.information no one can help you. You need.to share your project t or mq4/mq5 file
-
RE: Create an operation with an object in a chart.posted in Questions & Answers
@dragonfly617 Ok, as it was not so hard I created an additional buffer that show 1 for Buy signal and -1 for Sell signal for your convenience.
0_1583763512237_spudsstochastic.mq4
Please test before use on real account!!!
-
RE: Good Strategy (so far) but confusing results.......any ideas?posted in Questions & Answers
@xfire said in Good Strategy (so far) but confusing results.......any ideas?:
@abarrett69 Do you add your spread to your TP? I see your spread is too high.
when you see price is on the your tp but can't close a position that is a big spread .
Yepp, looks like he uses current spread in bt and over the weekend it may be quiet high.
-
RE: Good Strategy (so far) but confusing results.......any ideas?posted in Questions & Answers
@abarrett69 said in Good Strategy (so far) but confusing results.......any ideas?:
@trader-philipps Can you tell me where this is configured? I use slippage but assume that is slippage on the trade but I can't see Spread?
Well, I use Tick Data Suite on MT4, so it says variable for me. If it says current, tester takes spread from market watch , which works okay during market hours but on off market hours can be very high.

-
RE: check profit questionposted in Questions & Answers
@norbii012 said in check profit question:
i want make this somebody can help me pls ?
check running trade , and if it is not profitable, do not open another trade, if it is on profit, make tradeTry this block as a condition to check.

-
RE: red newsposted in Questions & Answers
@l-andorrĂ I know you can do so either. If you have some spare time, here is all you need (from what I see at the moment).
Use this version! I only added lables to the 2 buffers.
0_1580085642689_forexfactory.mq4
Use those settings!

Buffer considerqations:
For usage, please bare in mind that the 2 buffers only show the next news event that is a valid entry due to configuration. So for instance if you want low and medium news covered and 2 events of each time occur at same time and for some reason the medium news is found first, it will display the 2 buffers only for that one. Hence, if you plan for more than one news type, I'd suggest to make 1 configuration per news type!Does that make sense?
You may start a project and share the results to us.
-
RE: Need idea about MACD main & signal line crosses above the MACD threshold settings.posted in Questions & Answers
@yumatheba Well, I'm not sure, if I get your right. Should the trade be opened when the threshold is met or should the main line after the cross with the signal line, but only if main line is above threshold?
However, here are the 2 options in blocks I would start with:
- MACD cross must be above threshold:
(Sell signal)- Macd main has crossed (sometimes) the signal line and signal is if main line crosses threshold:

Whatever your intention is, one of both blocks should be sufficient.