| haroldv1 |
|
Gold User, Member, Platinum User, TeleChart
|
| Registered User |
|
|
|
|
| Unsure |
|
| Monday, November 20, 2006 |
| Thursday, December 8, 2011 10:11:47 PM |
14 [0.00% of all post / 0.00 posts per day] |
|
|
This opens a whole new world of development for me. Thank you for the pdf and sample chart.
|
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
|
|
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.
|
|
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,
|
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.
|
|
That works great. thank you
|
|
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
|
|
That was to simple. Thank you
|
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.
|
|
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.
|
|