Jump to content

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

Everything posted by elovemer

  1. .... monday is a buy day .... looking for a low made first.... ...
  2. ....today friday...short sale day ...appears to be putting in a low made first it is possible to make a long entry here... but the risk is higher than a low made first on buy day which would be monday
  3. strong close on thursday ... sets up a gap up for a high made first on short sale day ... for a short
  4. ... unless objective is hit early.... on a high made first
  5. prev high hit during globex ... close out ----------------------------------------- may have to sit out on sell day .. thursday the day to put out a short is short sell day on friday... if conditions are right
  6. it does not matter if anyone pays attention to you. all that matters is that you placed a trade which is going to be profitable. since you have not posted any entry or exit .... it must be assumed that you are not concerned with posting entries or exits.
  7. strong close but could not take out short sale day high ... so hold to next session... for an attempt at short sale day high ... a high made first
  8. ...if hits yesterday high.... close out same day ... if makes a strong close.... hold thru to next session
  9. .... speaking about reliability issues.... not which products to trade
  10. globex higher low put in during trading hours buy day
  11. please forgive my intrusion. i also don't see any wolfe wave in these charts. you are the self-proclaimed expert here so i can't say i am correct. ...but according to my understanding of wolfe waves, points 1,3,5 should form a trendline Wolfe Wave Home Page ....also...1,3,5 should form a series of either higher lows or lower highs i notice that all your charts are from TOS . i also use TOS for its charting... but would not dream of using it for actual trading because of its unreliability. sorry for the intrusion.....to those who don't see any wolfe waves here... you are not the only one
  12. tuesday short sale day wednesday ... buy day ... look for a test of overnight low as a buy point ... if big up move... close out same day ... if strong close... hold into next session ..maybe have to buy a higher bottom on buy day proper strategy is to wait for wednesday session to buy rather than to buy on tuesday
  13. highs and lows made first and last .. in series and mixed ----------- penetrations made first and last ..and failures to penetrate ------------- buying day lows under higher buying day bottoms buying day low violations
  14. there are a lot of TOS indicators out there now on the web. however don't try to use TOS for live trading as you will lose your shirt
  15. after the fact... euro daily .... bear W ... dollar daily... bull M
  16. ...result of bull M ............. ............
  17. ... or just make the current bar grey color until it completes ?
  18. .... it is a bull M otherwise known as a Gartley
  19. ................... ................ ...................
  20. .... can anyone program something to make the current bar ....flash on and off ?
  21. Suri, Thank you very much for your response. I am going to keep my eye on this pattern. Elo : 0 )
  22. ... i am curious as to what kind of gartley patterns these are ... the gartley i am familiar with has a 0.618 as its first retracement. ... and bearish butterfly a 0.786 as its first retracement. ...but this has a 50-something % as the first retracement ------------------------------------------------------------- ...also.... i don't understand why your expectation is that the pattern will be completed ... i thought that there was a bearish implication if and only if the pattern completes ...i have never read anything stating that if the first two retracements were completed.... that that would somehow cause the third retracement to be completed correctly -------------------------------------------------------------------- ....please forgive me if i am ignorant about these patterns.
  23. input timeFrame = {default DAY}; input showOnlyToday = no; def day = getDay(); def lastDay = getLastDay(); def isToday = if(day >= lastDay, 1, 0); def shouldPlot = if(showOnlyToday and isToday, 1, if(!showOnlyToday, 1, 0)); declare lower; input distrday_threshold = 9; def upvol = close(“$UVOL”); def dnvol = close(“$DVOL”); plot ZeroLine = 0; plot DistrDay = distrday_threshold; # plot volumedata = absvalue ( dnvol / upvol ); plot volumedata = if (shouldPlot, absvalue( dnvol/upvol) , double.nan); 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”)); #volumedata.AssignValueColor(if volumedata > volumedata[1] then #color.red else color.green); ============================================ TOS is only good for end of day charting.... nothing more.
  24. down volume ====================== declare lower; input distrday_threshold = 9; def upvol = close(“$UVOL”); def dnvol = close(“$DVOL”); plot ZeroLine = 0; plot DistrDay = distrday_threshold; plot volumedata = dnvol; 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”));
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.