Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.
statsign
Members-
Content Count
63 -
Joined
-
Last visited
Content Type
Profiles
Forums
Calendar
Articles
Everything posted by statsign
-
Nice thread. The wife got an Audi TT a little over a year ago. I have been really impressed. No problems other than I can ride in it but not comfortably it grips my kidneys. I haven't looked for some time. Is there an American made sports car at all now - I mean from an American company? I know some BMWs and others are made here.
-
Robert Miner--Dynamic Trader
statsign replied to pandion's topic in Swing Trading and Position Trading
DTosc is StochasticRSI available here. -
TS doesn't read DLL You will have to open the .asc files or study file and find the line that calls the DLL and see the location
-
no I made a mistake input: RSILength(9), StochLength(18), KLength(6), DLength(3), oversold(20), overbought(80), overscolor(white), overbcolor(white); Vars: DToscK(0), DToscD(0); value1 = RSI(C, RSILength); value2 = highest(value1,StochLength); value3 = lowest(value1,StochLength); value4 = iff(value1 - value3 <> 0 and value2 - value3 <> 0,(C - value3)/(value2 - value3) * 100,0); DToscK = average(value4,KLength); DToscD = average(DToscK,DLength); plot1(DToscK,"%K" ); plot2(DToscD,"%D" ); plot3( overbought, "OverBot" ) ; plot4( oversold, "OverSld" ) ; condition1 = value4 crosses over OverSold ; if condition1 then Alert( "Indicator exiting oversold zone" ) else begin condition1 = value4 crosses under OverBought ; if condition1 then Alert( "Indicator exiting overbought zone" ) ; end; I put in close instead of RSI in the stochastic calc - fixed above When you posted I thought you needed new code
-
This one interested me because it wasn't based on 30 min etc but the entire session. I haven't had time yet but will work with. Not actual volume - percentage of by price. Price is percentage as well by number of trades at instead of volume. Why would anyone pay for anything instead of learning to code? Just kidding. I am chart only so that is why I would use - I don't open the matrix. Anyway, posted pic in reply to ability to plot in axis of choice.
-
input: RSILength(9), StochLength(18), KLength(6), DLength(3), oversold(20), overbought(80), overscolor(white), overbcolor(white); Vars: DToscK(0), DToscD(0); value1 = RSI(C, RSILength); value2 = highest(value1,StochLength); value3 = lowest(value1,StochLength); value4 = iff(C - value3 <> 0 and value2 - value3 <> 0,(C - value3)/(value2 - value3) * 100,0); DToscK = average(value4,KLength); DToscD = average(DToscK,DLength); plot1(DToscK,"%K" ); plot2(DToscD,"%D" ); plot3( overbought, "OverBot" ) ; plot4( oversold, "OverSld" ) ; condition1 = value4 crosses over OverSold ; if condition1 then Alert( "Indicator exiting oversold zone" ) else begin condition1 = value4 crosses under OverBought ; if condition1 then Alert( "Indicator exiting overbought zone" ) ; end;
-
says "show the price distribution in magenta and volume distribution in cyan" Tradestation Profiler - eBay (item 320500614351 end time Mar-16-10 18:06:30 PDT)
-
don't have multicharts and just thought - it may not have fastkcustomeasy function if not post back and I will write it out for you
-
snagged this pic from ebay has volume blue and price purple
-
http://www.traderslaboratory.com/forums/110/best-price-oscillator-7323-2.html
-
I don't know Carter's PP and put in input adjustable maybe this will help input: SessStart(1803),SessEND(1615),PivotMethod(1); variables: var0( 0 ) , pp( 0 ) , var1( 0 ) , R1( 0 ) , var2( 0 ) , R2( 0 ) , var3( 0 ) , R3( 0 ) , var4( 0 ) , S1( 0 ) , var5( 0 ) , S2( 0 ) , var6( 0 ) , S3( 0 ) , var7( 0 ) , var8( 0 ) , SessReset( False ) , PivotReset( False ) ; SessReset = t = SessEnd; PivotReset = t = SessStart; if SessReset then begin var0 = var0 + 1 ; var1 = var2 ; var3 = var4 ; var5 = var6 ; var7 = Close; end; if PivotReset then begin var2 = Open ; var4 = High ; var6 = Low ; end else begin if High > var4 then var4 = High ; if Low < var6 then var6 = Low ; end ; condition1 = var0 >= 2 and BarType < 3 ; if PivotMethod = 1 then PP = ( var3 + var5 + var7 ) / 3; if PivotMethod = 2 then PP = ( var3 + var5 + var7 + var2 ) / 4; if PivotMethod = 3 then PP = ( var3 + var5 + var2 ) / 3; R1 = PP * 2 - var5; R2 = PP + var3 - var5; R3 = R2 + var3 - var5; S1 = PP * 2 - var3; S2 = PP - var3 + var5; S3 = S2 - var3 + var5; if condition1 then begin Plot1(R1, "R1" ) ; Plot2( R2, "R2" ) ; Plot3( R3, "R3" ) ; Plot4( S1, "S1" ) ; Plot5( S2, "S2" ) ; Plot6( S3, "S3" ) ; end ;
-
60 Minutes This Sunday - Wall Street: Inside The Collapse
statsign replied to brownsfan019's topic in General Trading
Not bitchin - 60 Min will show how idiocy allows America to be drained as you posted. This idiocy was your topic - Thus idiocy is relevant. Won't reply to any of your topics again. -
60 Minutes This Sunday - Wall Street: Inside The Collapse
statsign replied to brownsfan019's topic in General Trading
Americans overall are idiots. They allowed the Republicans to allow free trade which destroyed the economy a lot more than derivatives. They allowed Democrats (and RNC) to support illegal aliens which drives down wages and more immigration (same) when we have too many people already. They allow FDA to be a joke. Some drug is the best thing for a few years, then it's a lawyer's commercial. Food grows on fertilizer infused with toxic waste. Water and toothpaste infused with neuro-toxic sodium fluoride. ...endless..... Idiots will always be bent over - fact of life. -
Barchart Real-time Data Services: Troubleshooting
-
http://realtime.barchart.com/mri/ax3/BarchartX.xla
-
Just my opinion: add the mobility oscillator to this
-
Using EFT to Overcome Trading Issues
statsign replied to GhostofLivermore's topic in Trading Psychology
No personal experience. I used to be subscribed to emini-anonymous yahoo group and it was a hot topic with passionate followers. -
[tape reading] Price Action Traders, What Actually is It?
statsign replied to Jumper's topic in Technical Analysis
If a tradable has enough liquidity to be worthwhile for trading then there are often 1000 ticks at the same price and more often hundreds of ticks moving around 2 to 3 minimum movements making one tick charts nothing but horizontal lines most of the time. Price movement confirmation of some indicated state is a good point. These are tough topics. Trading futures or options is the way to go. Equities are illusive to many of the tactics posted here. Because: How much volume is just shaking for rebates? (most?) How much of the price move is directed from flash reading and front running? etc. These things have ended trading careers. -
[tape reading] Price Action Traders, What Actually is It?
statsign replied to Jumper's topic in Technical Analysis
Each tick is seen in RT charts regardless of bar interval - one tick charts are useless 99% of the time for chart watching price action. PriceActionFundamentals.pdf -
really not enough info magjson easiest way if trading intrabar- a boolean coupled with a stop loss formula instead of using SetStopLoss If oktotrade and Mashort > Malong then buy next bar at market; if C <= entryprice - Stoploss then begin sell next bar market; oktotrade = false; end; not enough info because you have to have logic to reset oktotrade
-
Right now ES is showing Vol Bar only around the bid/ask prices.I am not a matrix user so I will look tomorrow during day session. Volume only matters after the fact so I am interested in the price distribution being with it. I will work on this I think.
-
I'm not sure what you mean. Volume by price and percent of trades by price in the matrix?
-
Was just talking about a profiler for sale on ebay with a friend - it profiles price and volume for the entire day session instead of bar by bar. I have an interest in daytrades that generally wouldn't be considered scalps. Anyone doing this? I might make this to use and would like any useful input. Thanks
-
MCFX Power Language(Easy Language) Coding Issue
statsign replied to fireworkz's topic in Coding Forum
take values and string them and then print them because of the 2 dec place limit for float in the output bar just a print tip since your coding problem was solved -
added inputs for session times {Plots previous day Hi/Low/Close - Open {x} Out below} {Plots Camarilla Lines} {Rev date 07Aug09} input: SessStart(1803),SessEND(1615); variables: var0( 0 ) , var1( 0 ) , var2( 0 ) , var3( 0 ) , var4( 0 ) , var5( 0 ) , var6( 0 ) , var7( 0 ) , var8( 0 ) , SessReset( False ) , CamarillaReset( False ) ; SessReset = t = SessEnd; CamarillaReset = t = SessStart; if SessReset then begin var0 = var0 + 1 ; var1 = var2 ; var3 = var4 ; var5 = var6 ; var7 = Close; end; if CamarillaReset then begin var2 = Open ; var4 = High ; var6 = Low ; end else begin if High > var4 then var4 = High ; if Low < var6 then var6 = Low ; end ; condition1 = var0 >= 2 and BarType < 3 ; value10 = ((var3 - var5)*(1.1/2)) + var7 ; {H4} value20 = ((var3 - var5)*(1.1/4)) + var7 ; {H3} value30 = ((var3 - var5)*(1.1/6)) + var7 ; {H2} value40 = ((var3 - var5)*(1.1/12)) + var7 ; {H1} value50 = var7 - ((var3 - var5)*(1.1/12)) ;{L1} value60 = var7 - ((var3 - var5)*(1.1/6)) ;{L2} value70 = var7 - ((var3 - var5)*(1.1/4)) ;{L3} value80 = var7 - ((var3 - var5)*(1.1/2)) ; {L4} if condition1 then begin Plot1( var1, "Y-O" ) ; Plot2( var3, "Y-H" ) ; Plot3( var5, "Y-L" ) ; Plot4( var7, "Y-C" ) ; Plot10( value10, "H4" ) ; Plot20( value20, "H3" ) ; Plot30( value30, "H2" ) ; Plot40( value40, "H1" ) ; Plot50( value50, "L1" ) ; Plot60( value60, "L2" ) ; Plot70( value70, "L3" ) ; Plot80( value80, "L4" ) ; end ;