I can't seem to get any limit orders to fill when using the paper trading feature with options. Do I have to use market orders on all of these? Any way to make it fill in the middle of the spread by default?
|
Does TC2000 have a Advance/Decline Indicator included?.
I may have deleted the old one about 1 year ago and replaced it with a custom one. When I chose A/D line, it comes up with a custom created indicator that I created which I'm not sure it works. How can I get the old A/D line indicator back.
|
Can someone tell me how to download 12.4 for MAC? I cannot find it on the website. I do not want to run TC2000 v16 in my browser. I want something physically on my computer .
|
Bruce, is development even working on this? Or is it something that just isn't going to happen?
thanks
|
I found this formula on ther website which works well for fidning cup and handles on daily charts:
http://forums.worden.com/default.aspx?g=posts&t=42864
(MAXH10 < MAXH101.29 AND C <= MAXH129.1 AND C1 <= MAXH128.2 AND C2 <= MAXH127.3 AND C3 <= MAXH126.4 AND C4 <= MAXH125.5 AND C5 <= MAXH124.6 AND C6 <= MAXH123.7 AND C7 <= MAXH122.8 AND C8 <= MAXH121.9 AND C9 <= MAXH120.10 AND C10 <= MAXH119.11 AND C11 <= MAXH118.12 AND C12 <= MAXH117.13 AND C13 <= MAXH116.14 AND C14 <= MAXH115.15 AND C15 <= MAXH114.16 AND C16 <= MAXH113.17 AND C17 <= MAXH112.18 AND C18 <= MAXH111.19 AND C19 <= MAXH110.20 AND C20 <= MAXH109.21 AND C21 <= MAXH108.22 AND C22 <= MAXH107.23 AND C23 <= MAXH106.24 AND C24 <= MAXH105.25 AND C25 <= MAXH104.26 AND C26 <= MAXH103.27 AND C27 <= MAXH102.28 AND C28 <= MAXH101.29 AND C29 <= MAXH100.30 AND C >= AVGC50 AND C / MAXH130 >= .80 AND (MINC65 - MAXC130) / MAXC130 >= ( - .55) AND (MINC65 - MAXC130) / MAXC130 <= ( - .12) AND MAXC10 / MINC10 <= 1.25 AND (C - MINC65) / (MAXC130 - MINC65) > .5)
CouId I convert this to work on finding cup and handles on my intraday chart (5 minute time frame)?
|
Bruce I'm using this Marabozu formula that you wrote in another thread;
ABS(C - O) >= .95 * (H - L) AND H > L
I need to scan for Marabozu that have less than a four cent spread between the bid and ask?
How would I do this? Is it possible?
Thanks
|
I am trying to add my condition to my scans for my two minute time frames scans..
The 8 EMA crossing the 15 EMA
This is the code that I have. This works:
(XAVGC15.2< AVGC8.2) AND (XAVGC15 > AVGC8) AND (C > XAVGC15)
But how do I make two scans, on one scan the 8 EMA crosses to the upside and in one scan the 8 ema crosses to the downside?
I tried making anoter condition opposite of the first :
(XAVGC8.2 < AVGC15.2) AND (XAVGC8 > AVGC15) AND (C > XAVGC8)
but that's not it because they give me the same results as the first one.
Thank you
|
Can somoene help me write this?
I want to add a column for gappers with the following parameters so it will give me a check mark if it meets these conditrions:
1. The stock must gap up or down a minimum of $0.20
2. The gap must be less than 85% of yesterdays range
3. The gap must be greater than 15% of yesterdays range
I'm not good at programming so I am not sure if this is possible.
Every morning I want to check the SPY
|