snappyfrog 721 posts msg #145425 - Ignore snappyfrog |
12/3/2018 8:44:24 AM
I am trying to do a count of when the MACD Fast Line is above the MACD Slow Line. I want to use the MACD and the price crossing above the EMA(8) as a buy signal and then the CCI(14) as a signal to start looking for an exit.
I figured out the count for the EMA and CCI, but struggling with the MACD above 0.
Any ideas?
MACD Fast Line(12,26,9) crossed above MACD Slow Line(12,26,9)
set{clo1, count(close > ema(8),1)}
draw clo1
set{cci1, count(cci(14) > 100,1)}
draw cci1
|
snappyfrog 721 posts msg #145426 - Ignore snappyfrog |
12/3/2018 8:53:51 AM
|
Cheese 1,374 posts msg #145428 - Ignore Cheese |
12/3/2018 9:35:56 AM
snappyfrog,
Are you looking for something like this?
Good luck trading
|
snappyfrog 721 posts msg #145429 - Ignore snappyfrog |
12/3/2018 9:38:16 AM
BINGO, thank you Cheese! Just what I needed.
|
Cheese 1,374 posts msg #145430 - Ignore Cheese |
12/3/2018 9:39:55 AM
|
Cheese 1,374 posts msg #145431 - Ignore Cheese |
12/3/2018 9:41:30 AM
You are welcome.
|
snappyfrog 721 posts msg #145432 - Ignore snappyfrog |
12/3/2018 9:49:10 AM
Ok, cheese, that is another concept I had not thought about.
I may be able to see something in that also.
Thanks for your quick help.
|
snappyfrog 721 posts msg #145433 - Ignore snappyfrog |
12/3/2018 9:54:03 AM
|