Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Profile: haroldv1
About
User Name: haroldv1
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Monday, November 20, 2006
Last Visit: Thursday, December 8, 2011 10:11:47 PM
Number of Posts: 14
[0.00% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: Blocks
Posted: Tuesday, October 18, 2011 2:40:35 AM
This opens a whole new world of development for me.   Thank you for the pdf and sample chart.
Topic: Blocks
Posted: Friday, October 14, 2011 5:56:47 PM
I've been working with Block indicators and implimenting some of the Toolbar items.  I especially love the LED meters, Data display, and Numeric selector.  The Numeric selector works great as a common global variable.  Being able to drag and drop realcode indicators and other items makes both realcode and Block compliment each other well.

The one thing I can't seem to get working is a simple count of symbols from the active watch list.
I just need it to count symbols that match an indicator value.
This Block Diagram is the property of a Data display item on my toolbar which is where I am displaying the count.
Do you know or have a basic Block Diagram that will count symbols in a watch list matching an indicator value?  Also is there any documents on the many types of blocks and there connection syntax?
Thank you,
Harold
Topic: Numeric Selector resets
Posted: Wednesday, October 5, 2011 3:13:48 PM
Yes I remeber Blocks back before StockFinder.  Never got a chance to work with creating Block indicators.  Thank you for the video and your support.  I'll post if I come up with something usefull.
Topic: Numeric Selector resets
Posted: Wednesday, October 5, 2011 2:52:51 PM

Ok, thought it would make a good switch for some of my indicators.  Any other suggestions for a global switch.  What is the purpose of the numeric selector?  Was its main purpose designed just for a single session?

Thank you,

Topic: Numeric Selector resets
Posted: Wednesday, October 5, 2011 2:37:14 AM
Hi, I have follow the direction for using the Numeric Selector as a common variable for multiple realcode indicators.  However when I restart StockFinder it recompiles the realcode indicators and resets the Blocks.  Is there anyway to save the Blocks settings.

Previous posted directions...

It requires editing the code block diagram. Here are the step. The tricky part is that you can connect a connection to the numeric selector by directly mousing to the numeric selector field.

1. write the code for module, for example called do_it, with a userinput as in

'# theValue = userinput.integer = 1234
...
...
...
2. add the numeric selector to the toolbar.

3. Edit the block diagram for do_it and reconnect the userinput on the code block [1234]==>[ do_it ]
to the numeric selector by clicking and dragging to the numeric selector field outside the block diagram edit window and presto!

4. remove the original numeric parameter block [1234]

5. to display the numeric selector value in the legend add a legend block and connect the numeric selector to it

and you are done.

Topic: Using .MaxHigh(x) on PE Ratio indicator.
Posted: Friday, June 24, 2011 7:15:47 PM
That works great.  thank you
Topic: Using .MaxHigh(x) on PE Ratio indicator.
Posted: Friday, June 24, 2011 6:10:17 PM

I can get this to work using a moving average indicator but not with the P/E Ratio indicator.

'# PE = chart.P-ERatio
Static PEYearlyHigh As Single = 0

PEYearlyHigh = PE.MaxHigh(252)

Plot = PEYearlyHigh

Topic: Filter out symbols with little or now bars.
Posted: Friday, June 24, 2011 5:40:42 PM

That was to simple.  Thank you

Topic: Filter out symbols with little or now bars.
Posted: Friday, June 24, 2011 4:50:41 PM
Is there a way to filter symbols with little or now data. Say I only want to list symbos with 2 or more years worth of bars. Seems simple but I get weird results. Usually one or two symbols show up.
Thanks for the help.
Topic: Filter out symbols with little or no data
Posted: Friday, June 24, 2011 4:48:37 PM

Is there a way to filter symbols with little or now data.  Say I only want to list symbos with 2 or more years worth of bars.  Seems simple but I get weird results.  Usually one or two symbols show up.
Thanks for the help.