thevinman |
Member, Platinum User, TeleChart
|
Registered User |
|
|
|
|
Unsure |
|
Monday, February 22, 2010 |
Monday, August 2, 2010 11:36:17 AM |
187 [0.06% of all post / 0.03 posts per day] |
|
Dear support,Can you give an indication when this new build is coming out? Kind regards, thevinman
|
cool thanks
|
Dear supportIs there a video out there that shows how I can use volume surge as a filter in my scanner?kind regards, thevinman
|
Try using the average true range as a "greater than" condition in your filter and set it to 1.5 (or more) dollars. You will find the best volatile stocks out there.Cheers thevinman (a trader)
|
Dear Bruce,
I have plotted the todays intraday high in the price chart, but the line is touching all the previous bars that set the todays high. I would just like to have one horizontal line that would represent the high of the day. So everytime it makes a new high the horizontal line goes up also. Could I use the code for yesterdays high to create one static horizontal line?
Kind regards,
thevinman
|
This is the code for yesterdays high:
Static High(1) As Single
If isFirstBar Then
High(0) = Single.NaN
High(1) = Single.NaN
End If
If Price.DateValue.DayOfYear <> Price.DateValue(1).DayOfYear Then
High(1) = High(0)
High(0) = Price.High
End If
High(0) = System.Math.Max(High(0), Price.High)
Plot = High(1)
Save it as an indicator and overlay it in the intraday price chart.
cheers thevinman
|
Dear Bruce,
Thank you for the codes. This is awsome.
Yesterdays high and low code is interesting for SF5 to put into there indicator list. Yesterdays high and low are used by traders as intraday support and resitances levels.
Again thank you for helping me out.
Cheers thevinman
|
Thanks again guys!
the code for the low of the day is:
'Current Intraday Low
Static Low As Single
If isFirstBar Then Low = Price.Low
If Price.DateValue.DayOfYear <> Price.DateValue(1).DayOfYear Then Low = Price.Low
Low = System.Math.Min(Low, Price.Low)
Plot = Low
Is it also possible to plot yesterdays low by using this code? By saying price.low(1) instead of price.low?
Kind regards,
thevinman
|
Dear remobile1,
I had the same issue and there are some things you can do:
1a. The most complex conditions at the end of the filter as you already filtered out most of the symbols
1b. Do a general scan first of the 1000 shares to filter out the ones you will never trade. Filter on min and max price, average daily volume and/or min daily ATR. Then copy that list to you personalized scan.
2. When I changed to windows 7 the speed went up dramatically, but this is my personal experience.
3. Go to settings/data manager and lower the number of bars you minimum need for your conditions to work.
4. Some computer stuff you can do: defrag your computer, update windows manually, clear caches of java and explorer, upgrade your internal memory.
I hope this will help you. Kind regards,
thevinman
|
Dear Support,
I have used the code below to plot a horizontal line for the intraday high of today. I got it from the forum (thanks), but I cant find the one for the low of the day. Do I just change the word 'high' for 'low' in the code to get the intraday low? Help is appreciated.
Thanks thevinman
'Current Intraday High
Static High As Single
If isFirstBar Then High = Price.High
If Price.DateValue.DayOfYear <> Price.DateValue(1).DayOfYear Then High = Price.High
High = System.Math.Max(High, Price.High)
Plot = High
|
|