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.
elovemer
Market Wizard-
Content Count
1224 -
Joined
-
Last visited
Content Type
Profiles
Forums
Calendar
Articles
Everything posted by elovemer
-
up volume ============================ declare lower; input distrday_threshold = 9; def upvol = close(“$UVOL”); def dnvol = close(“$DVOL”); plot ZeroLine = 0; plot DistrDay = distrday_threshold; plot volumedata = upvol; volumedata.SetPaintingStrategy(PaintingStrategy.HISTOGRAM); volumedata.DefineColor(“Positive”, Color.UPTICK); volumedata.DefineColor(“Negative”, Color.DOWNTICK); volumedata.AssignValueColor(if volumedata >= distrday_threshold then volumedata.color(“Positive”) else volumedata.color(“Negative”));
-
..... after a sym tri .... for a day ... after several r10 signals..... against the trend
-
... when does r10 not work ?
-
looks like another.... IHS in the works on daily chart
-
not a bad result ............. ............. ..........
-
yeah... "prolific" :0)
-
... or today ? ............ ...........
-
expecting move on ES tomorrow or monday
-
that is freaking cool. :0) thanks for that.
-
coming .......... ........... ..........
-
looking for expansion on dollar tomorrow or next day ............ ............ ..............
-
for identifying trend ========================================== declare lower; input ATRLength = 14; plot ATR = (AbsValue(close - open)); ATR.SetDefaultColor(GetColor(8)); ATR.SetPaintingStrategy(PaintingStrategy.HISTOGRAM); ATR.DefineColor("Positive", Color.green); ATR.DefineColor("Negative", Color.gray); ATR.DefineColor("other", Color.red); ATR.AssignValueColor ( if ( (high > high[2]) and ( (absvalue(close-open)) > absvalue(close[1]-open[1]) ) ) and (close > open) then ATR.color("Positive") else if ( (low < low[2]) and ( (absvalue(close-open)) > absvalue(close[1]-open[1]) ) ) and (close<open) then ATR.color("other") else ATR.color("negative")); # if ( (low < low[1]) then ... else
-
looking for expansion on gold tomorrow ................ ............... ...............
-
what is wrong with attachments lately ?
-
lookin for large move on euro today or tomorrow the attachments button is not there right now... so i can't post my chart
-
dug dug.... i am looking to post charts which suggest a move with range larger than recent previous days yes. where you are confused i think is that you are talking about hindsight. i am talking about current charts being posted which suggest large moves that have not yet occurred. no i am not asking for anything. i will post the charts which i think suggest coming increased volatility. if someone else wants to contribute some charts which they think suggest the same thing, then that's wonderful. no i don't want discussion. just charts which suggest coming volatility increases on a swing frame.
-
... sorry. ... i am not interested in talking about volatility ... just charts ...that is to say, i don't care how one defines volatility ..just looking to nail down the large moves within a day or two
-
...contributions are welcome... as long as it is only charts....
-
...looking to pinpoint break out within 1-2 days ... only using chart ... for these purposes... volatility is the coming break out ..... for multi-day swings...
-
sounds good ........... ................ ...............
-
volatility thread using only charts
-
range decrease ... this is better. the idea is to try to pinpoint where the the range has decreased the most.... ... in order to identify where the next thrust in price will most likely appear .... a trader wanting to get in on the next move, wants to enter during low range .... and at a pivot point ---------------------------- declare lower; input ATRLength = 14; def HA = high[1]; def HB = high[2]; def HC = high[3]; def LA = low[1]; def LB = low[2]; def LC = low[3]; def C = close[1]; def H3 = Max(Max(HA, HB), HC); def L3 = Min(Min(LA, LB), LC); Def calc_PP = (H3 + L3 + C) / 3; def calc_MP = (H3 + L3) / 2; def calc_PR = AbsValue(calc_PP - calc_mp); def calc_PH = Calc_PP + calc_PR; def calc_PL = Calc_PP - calc_PR; plot ATR = 1/ (absvalue(calc_PH-calc_PL)) ; #plot ATR =1/(AbsValue(calc_PH - calc_PL)) ; #def hum = (AbsValue(calc_PH - calc_PL)) ; ATR.SetDefaultColor(GetColor(8)); ATR.SetPaintingStrategy(PaintingStrategy.HISTOGRAM); ATR.DefineColor("Positive", Color.green); ATR.DefineColor("Negative", Color.red); ATR.AssignValueColor(if #HUM # ATR < 0 (absvalue(calc_PH-calc_PL))< (absvalue(calc_PH[1]-calc_PL[1])) then ATR.color("Positive") else ATR.color("Negative"));
-
................. .................. ------------------------------------
-
SPY Hits Multi-year Andrew's Pitchfork Target
elovemer replied to waveslider's topic in Technical Analysis
........... ............ ............ ............. -
.... on hourly, this shows the pivots for the last 3 hours ... this is good for showing how strong the trend is ...entry should be made when pivot range is low ... low pivot range will also show possible reversal points