3dbeing |
Gold User, Member, Platinum User, TeleChart
|
Registered User |
|
|
|
|
Unsure |
|
Wednesday, June 24, 2009 |
Thursday, September 1, 2011 9:03:25 AM |
178 [0.06% of all post / 0.03 posts per day] |
|
Great! Thanks for that...
|
How can I explicitly declare the color and opacity for painting price and indicators? ie: rather than choosing color names I would like to use numerical definitions
cheers
-=3db
|
Try the windows drop down menu at the top, then Add Frame, now drag and drop to arrange this window.
|
found it, at the end of the Properties and methods
me.numofbars
my appologies again...
|
hmmmm, this seems promising
NumOfBars; The NumOfBars property overrides the Bar Limiter setting in the Data Manager allowing you to set more(or less) bars available for your calculation.
Unfortunately the reference doesn't give any code examples, so it's really a shot in the dark as to the syntax.
|
Yeah I thought that I might have to do that, I thought there was a more mathematical approach though... ok, I'll do that then, thanks Jas..
|
bascially what i've done is plot the absolute value, but I want to color by actual value...
whereas
plot = system.math.abs(-.76)
===============================
count = ( myInd_01.bar.count - 1 ) - ( myInd_02.bar.count - 1 )
For i As Integer = 0 To myInd_02.bar.count - 1
val = myInd_02.bar.value( i + count + 1 ) - myInd_02.bar.value( i + count )
If val >1 then
myCol = color.green
else
myCol = color.red
endif
addtooutput(myInd_02.bar.count(i), myCol)
next
================================
it all plots green...
|
Ok, so I've run into the problem where it seems the issue is that bar counts don't match...
is there a trick to linning up bar counts?
|
Ok, thanks...
so if this if the discussion forum is not technical support what is it classified as?
|
Stock finder is doing some very strange things with my saved files. first, it doesn't recognize all the stock finder files in the folder, second, I have itterated my chart several times, and now I can't find the file...
where does stock finder default saved files too?
|
|