Is there anyway to determine support and resistance? i.e on the 5min chart sell when we crash through support etc?
I am really wondering why there are so many lagging indicators available but I'm not seeing a lot of things related to price action. Can someone point me in the right direction if I'm wrong.
Best posts made by jzfusion
-
Support and Resistanceposted in Questions & Answers
-
Importing Variables and constantsposted in Questions & Answers
I have created a long list of variables that I want to use in another project. What is the quickest way of importing them into the new project?
-
RE: Can I have the timeframe dropdown in a variable that applies to all conditions?posted in Questions & Answers
Found it:
ENUM_TIMEFRAMES and then call the variable PERIOD_M1 or whatever timeframe you wish.

-
RE: DAILY TARGETposted in Questions & Answers
@kestra I think you've given me an idea. I'm thinking about having a filter for some days such as Friday. So for example on Fridays I could lower the lot sizes or even change the options for money mangement using the Weekday filter. I think @l-andorrà has an example in his tutorial system where he filters for Fridays and negative swap etc.
Latest posts made by jzfusion
-
RE: Increment volume upper limit based on equity when using martingaleposted in Questions & Answers
@l-andorrà
Thanks. I think this will do for now -
RE: Increment volume upper limit based on equity when using martingaleposted in Questions & Answers
@l-andorrà
I can do [ if balance => 500 ] then blah. What I can't get my head around is doing the increments based on each additional 500 -
Increment volume upper limit based on equity when using martingaleposted in Questions & Answers
I know martingale is frowned on but I'm creating a money management system based on this idea.
I want to set a volume upper limit based on the size of my account so for example for 500 equity I want volume upper limit to be 0.16 but once the account grows to 1000 I want that incremented. So my volume upper limit is based on a specific account size.
@roar This is should be a fun one for you.
-
RE: How to inspect a candle at a specific hourposted in Questions & Answers
Cool
@roar Any ideas on how we achieve this? I thought this was a very simple one. -
How to inspect a candle at a specific hourposted in Questions & Answers
I want to be able to look back and have a condition that can check if for e.g the hourly candle at 10:00 closed bear or bull.
-
RE: Total profit reduces by x % then close everything ..yet againposted in Questions & Answers
@l-andorrà
I have fixed the issue however I noticed during the backtests that after the trading stopped I noticed the equity curve still going down. Is that a back test error? -
RE: Total profit reduces by x % then close everything ..yet againposted in Questions & Answers
@l-andorrà
I do have a time limit filter for the London trading times. Is that what is interfering ? -
Total profit reduces by x % then close everything ..yet againposted in Questions & Answers
@roar
I was wondering what I've got wrong with this circuit breaker code that you helped with. When I test it it doesn't seem to stop trading. The circuitbreaker constant is a double(0.9). This is in the tick block.
Is there something I'm missing



-
Breakeven + some..... Can I get the EA to move to breakeven plus a few pips?posted in Questions & Answers
I want to be able to go to breakeven but inch up just a little so that any slippage/spread is covered?
-
How do I convert this to mql5posted in Questions & Answers
I'm trying to get the massive tutorial template to work in mql5. It seems this bit of code is not compatible with mql5
vdSwapSell=NormalizeDouble(MarketInfo(Symbol(),MODE_SWAPSHORT),3);
vdSwapBuy=NormalizeDouble(MarketInfo(Symbol(),MODE_SWAPLONG),3);I get these errors. I suspect they are expressed differently in MT5
')' - open parenthesis expected
'MarketInfo' - undeclared identifier
'MODE_SWAPSHORT' - undeclared identifier
'MODE_SWAPSHORT' - some operator expected
'Symbol' - some operator expected
'3' - unexpected token
'MarketInfo' - undeclared identifier
'MODE_SWAPLONG' - undeclared identifier
'MODE_SWAPLONG' - some operator expected
'Symbol' - some operator expected
'3' - unexpected token