| Coding Forum Collaborate, receive help, or discuss coding related issues. |
![]() | | Tweet | |
| | #1 | ||
![]() | i sued to have it in mt thinkorswim charts and it was very usefull the code in thinkorswim is: # TS_AdvanceDeclineBox # thinkscripter@gmail.com # Last Update 03 JAN 2010 def UV = close("$UVOL"); def DV = close ("$DVOL"); def ADL = UV - DV; def ADR = if UV > DV then UV / DV else -DV / UV; input mode = {default Ratio, Issues}; def modeSwitch = if mode == mode.Ratio then 1 else 0; AddChartLabel(yes, concat( if modeSwitch then ADR else ADL, concat(" ", if modeSwitch then ":1 NYSE UV/DV" else " NYSE UV/DV")), if modeSwitch then if ADR > ADR[1] then color.green else color.red else if ADL > ADL[1] then color.green else color.red); plot null = double.nan; anyone out there coudl help me out??? thanks!, | ||
| |
|
| | #2 | ||
![]() | Re: Up - Down Volume Ratio var: DVol (0); var: TheVol (0); UVol = Close data1; DVol = Close data2; TheVol = UVol - DVol; if TheVol>0 then plot1(TheVol, "Vol", Green, 0,0); if TheVol<0 then plot1(TheVol, "Vol", Red, 0,0); plot2(0, "0", White, 0,0) | ||
| |
|
| | #3 | ||
![]() | Re: Up - Down Volume Ratio Quote:
__________________ Only an idiot would reply to a stupid post | ||
| |
|
| | #4 | ||
![]() | Re: Up - Down Volume Ratio Lukas | ||
| |
|
| | #5 | ||
![]() | Re: Up - Down Volume Ratio i find it very usefull to have them expresed as a ratio and displayed in the graph!! thank you | ||
| |
|
| | #6 | ||
![]() | Re: Up - Down Volume Ratio looks very good what i'm really looking for is a whay to place a small window in my charts that would express the up - down valume ratio please look at the screen shot i posted thanks again for your help! binthere | ||
| |
|
| | #7 | ||
![]() | Re: Up - Down Volume Ratio Quote:
http://www.traderslaboratory.com/for...bias-6519.html 102.214.133
__________________ Only an idiot would reply to a stupid post | ||
| |
|
| The Following User Says Thank You to Tams For This Useful Post: | ||
clmacdougall (08-13-2010) | ||
| | #8 | ||
![]() | Re: Up - Down Volume Ratio | ||
| |
|
![]() |
| Thread Tools | |
| Display Modes | Help Others By Rating This Thread |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Tradestation Has Just Added 96 New Indexes, Including $ADD and $VOLD | thrunner | Brokers and Data Feeds | 8 | 05-01-2012 02:23 PM |
| VSA Official Summary Part 2 | Soultrader | Volume Spread Analysis | 8 | 12-25-2010 03:36 PM |
| VSA Official Summary Part 1 | Soultrader | Volume Spread Analysis | 1 | 08-01-2008 05:29 AM |
| The Basics of Volume Part 1 | Martin Pring | Trading Articles | 13 | 02-28-2008 05:50 PM |
| Jperl's Trading With Market Statistics Summary | Soultrader | Day Trading and Scalping | 0 | 01-27-2008 03:56 AM |