Is there a way to draw certain items like price levels from thinkscript? I have 9 price levels on my charts that are labeled and I have to update them every...
1054
macawdoc
Jun 1, 2009 8:53 pm
Hi TS... So I have played around with the code...adding a few scripts (ie., "isopen" to just give signals during the designated market hours)and it appears to...
1055
macawdoc
Jun 1, 2009 8:55 pm
Are you not wanting to use the "Price Level" feature in the drawings drop down menu? Mac...
1056
RPinSC
rwpank123
Jun 1, 2009 8:55 pm
Are you talking about things like: Open, Close, High, Low, today's, yesterday's? Does it require math, or do you just want to input a number in a study and...
1057
Steve Smegner
ssmegner
Jun 1, 2009 9:48 pm
The values are pivot points s1,s2,s3,r1,r2,r3,pp, todays open, yesterday's close. Pivots points change daily so there is no 'across the chart' line like price...
1058
macawdoc
Jun 1, 2009 9:52 pm
Here is a start...a code for Yesterdays HLC...and you can just select the pivots from the study section...that should give you all your lines. #Yesterdays...
1059
tradescripter
Jun 1, 2009 10:14 pm
Mac, Glad that is working for you. For a "short", the fast line will first be over the slow line and then cross under. I always check for the fast line to...
1060
RPinSC
rwpank123
Jun 1, 2009 10:24 pm
Here is some script for Today's high, low, and open. I got some help from Tradesscripter.Enjoy # DAYRANGE # Tradescripter and RP # Last Update 15 Feb 2009 #...
1061
macawdoc
Jun 1, 2009 10:25 pm
Ahhhh...that makes sense. Thanks TS. I will play with the code a bit more. Happy trading! Mac...
1062
miller_ol@...
miller_ol
Jun 1, 2009 11:45 pm
That tracks where price is spending most of its time in the price range? For example, Take a 30 minute candle with a price range of 60 cents, this tool would...
1063
macawdoc
Jun 2, 2009 12:16 am
OK TS...I am now playing with the short_entry and short_exit strategies..and this is what I have so far... But first a few questions: 1) Can you explain the...
1064
macawdoc
Jun 2, 2009 12:30 am
Sounds like you want a Market Profile Indicator.. I think I might have one stashed away somewhere...let me take a look and get back to you. Mac...
1065
macawdoc
Jun 2, 2009 12:42 am
Hi again... I do not have a market profile indicator code...but TOS has one built into their Active Trader screen under the Trade tab. Hope this helps. Mac...
1066
Oliver Miller
miller_ol
Jun 2, 2009 2:31 am
Thanks mac for responding as quickly as you did. I will check it out. One more thing I have been experimenting with thinkscript trying to color code price...
1067
asrpool
Jun 2, 2009 5:27 am
Hi guys, Is there any way to automatically create a watch list by filtering stocks through a strategy? I mean: To find which Put to sell (or just go Long) I'd...
1068
asrpool
Jun 2, 2009 5:53 am
Well, yet another question - is it possible to create a list of stocks interesting for option trader? I have no idea how to fliter out stocks with no or almost...
1069
RPinSC
rwpank123
Jun 2, 2009 10:15 am
Investools has this capability, but there is a cost. Finviz.com has good search features....
1070
paul messerschmidt
fuelspotpaul
Jun 2, 2009 1:58 pm
in my experience, there are more than enough 'interesting stocks for option ... yes, there may be opportunities outside this population set, but those tend to...
1071
tradescripter
Jun 2, 2009 4:09 pm
Volume code: This code doesn't have any errors. I put in the conditions you wanted, but didn't check it for accuracy. It does turn volume bars yellow. tos...
1072
tradescripter
Jun 2, 2009 4:18 pm
IsNan stands for "Is Not a Number". IsNan can check for situations where the variable doesn't have a value assigned to it. When using the "REC" command I...
1073
miller_ol@...
miller_ol
Jun 2, 2009 11:45 pm
Alright thanks .... I am able color the volume bars no problem there, its the price bars I am having trouble with Oliver ... From: "tradescripter"...
1074
tradescripter
Jun 2, 2009 11:54 pm
I don't know of a way to color the price bars. I know that in other charting programs, there are ways to color the price bars....
1075
macawdoc
Jun 3, 2009 5:36 pm
Thanks once again TS for sharing wealth of information. Cheers Mac...
1076
Option Income Trader
tos_futurest...
Jun 3, 2009 7:04 pm
Do you know if it's possible to change the color on the background in the price panel?? Based on the conditions below, set the background to different colors??...
1077
tlbeek77
Jun 3, 2009 10:43 pm
I made this strategy to give me long/short entries based on the 20 & 50 SMA. Seems to work on Daily charts but not weekly. Any thoughts? declare LONG_ENTRY; ...
1078
tradescripter
Jun 4, 2009 12:43 am
I don't see anything in the list of things available to thinkScript. When you are editing a study, there is a list on the right hand side of functions,...
1079
RPinSC
rwpank123
Jun 4, 2009 12:55 am
There is a study of FW Dashboard that allows you to select the background style. I did not look at the script, but if you search for it and find it, there...
1080
tradescripter
Jun 4, 2009 1:29 am
Try adding a price condition to the simplemovingavg. I added "close" as the price condition. For example: def smatwenty = reference...
1081
tlbeek77
Jun 5, 2009 11:54 pm
Thanks! Still seems to be off by 2 days for some reason. Is that normal?...
1082
tradescripter
Jun 7, 2009 1:43 am
I'm not sure what is happening. You will need to give specifics about exactly what time frame you are using, and what the results are that you are getting....