hmsb4494 81 posts msg #91634 - Ignore hmsb4494 modified |
4/25/2010 6:59:11 PM
using the following for weekly profit opportunity
set{whiop, weekly high - weekly open}
set{Long_Profit, whiop / weekly open }
set{wkProfitPct, 100 * Long_Profit }
how can i code for an EMA of wkProfitPct over a given time period
everything i have tried has failed
|
four 5,087 posts msg #91639 - Ignore four |
4/25/2010 7:51:31 PM
draw cema(wkProfitPct,2)
draw cema(wkProfitPct, 20)
do not draw wkProfitPct
-------------
http://forums.stockfetcher.com/sfforums/?q=view&fid=1004&tid=32187&qrid=&isiframe=
In addition to creating custom simple moving averages, you can now create your own custom exponential moving averages (CEMA) and custom weighted moving averages (CWMA). The usage is the same as the custom moving average (CMA). Below are two examples:
1. Use a 5 day EMA of the RSI(14)
2. Create a weighted moving average of the CCI(10)
|
hmsb4494 81 posts msg #91640 - Ignore hmsb4494 |
4/25/2010 8:03:13 PM
thanks four---just what i was looking for!!!
|
four 5,087 posts msg #91675 - Ignore four |
4/26/2010 2:39:09 PM
Bingo
|