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.

suriNotes

Members
  • Content Count

    166
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by suriNotes

  1. Great design.. Looks sharp! Thanks James!! Regards, Suri
  2. Hi, Try this code.. I have not tested the code, but you get the idea. Regards, Suri ============================= Inputs: price(Close), length(9), zeroLine(21), zeroVisible(false), upColour(Blue), downColour(White), colourDeltaBar(1); Var: TradeSetup(0), barColor(0); Value1 = hull(price, length); Plot1(Value1,"hull"); If ZeroVisible = true then Plot3(zeroLine, "Zero"); if (Value1 > Value1[1]) then begin TradeSetup = 1; // Long barColor = UpColour; end else if (Value1 < Value1[1]) then begin TradeSetup = -1; // Short barColor = downColour; end; SetPlotColor[colourDeltaBar](1, barColor); // check if BarColor has changed if (barColor <> barColor[1]) then begin if TradeSetup = 1 then Alert("Long") else if TradeSetup = -1 then Alert("Short"); end; { if (Value1 > Value1[1]) then Alert("Long"); if (Value1 < Value1[1]) then Alert("Short"); { Color criteria } if (Value1 > Value1[1]) then SetPlotColor[colourDeltaBar](1, upColour) else if (Value1 < Value1[1]) then SetPlotColor[colourDeltaBar](1, downColour); }
  3. Here is a list of China Stocks trading on the U.S. exchanges Regards, Suri ========================== ACH Aluminum Corp Of China ADS NYSE ACTS Actions Semiconductor Co ADS NASDS AOB American Oriental Bioengineeri NYSE ASIA Asiainfo Holdings NASDAQ ASX Advanced Semiconductor Eng ADS NYSE ATV Acorn International Inc NYSE AUO AU Optronics ADS NYSE BIDU Baidu Inc NASDAQ BNSO Bonso Electronics Intl NASDAQ CAAS China Automotive Sys Inc NASDS CBAK China BAK Battery Inc NASDAQ CEA China Eastern Airlines ADS NYSE CEO CNOOC Ltd ADS NYSE CHA China Telecom ADS NYSE CHINA CDC Corporation Class A NASDS CHL China Mobile Limited NYSE CHT Chunghwa Telecom Co Ltd ADS NYSE CHU China Unicom ADS NYSE CMED China Medical Technologies ADS NASDAQ CNTF China TechFaith Wireless Comm NASDAQ COGO Cogo Group Inc NASDAQ CPSL China Precision Steel Inc NASDAQ CSIQ Canadian Solar Inc NASDAQ CSUN China Sunenergy Co Ltd NASDAQ CTDC China Tech Development Group NASDS CTEL City Telecom(H.K.)ADS NASDAQ CTRP Ctrip.com Intl NASDAQ CYD China Yuchai Intl NYSE DSWL Deswell Industries NASDAQ EDU Oriental Educ & Tech Group NYSE EFUT e-Future Info Technology Inc NASDAQ FFHL Fuwei Films Co NASDAQ FMCN Focus Media Holding Spon ADR NASDAQ GAI Global-Tech Advance Innovation NASDAQ GIGM Gigamedia Ltd NASDAQ GRRF China Grentech Corp NASDS GSH Guangshen Railway ADS NYSE HIHO Highway Holdings NASDS HMIN Home Inns & Hotels Management NASDS HNP Huaneng Power Intl ADS NYSE HRAY Hurray! Holding Co Ltd NASDAQ HRBN Harbin Electric Inc NASDAQ HTX Hutchison Telecom Intl Ltd NYSE JADE LJ Intl NASDAQ JASO JA Solar Holdings Co Ltd NASDAQ JOBS 51job Inc NASDAQ JRJC China Finance Online Ltd ADS NASDAQ JST Jinpan Intl NASDAQ KONG KongZhong Corp ADS NASDS LDK LDK Solar Co Ltd NYSE LFC China Life Insurance ADS NYSE LONG eLong Inc ADS NASDAQ LTON LinkTone Ltd. ADS NASDAQ MPEL Melco Crown Entertainment Ltd NASDAQ MR Mindray Medical Intl Limited NYSE NCTY The9 Limited ADS NASDS NINE Ninetowns Internet Technology NASDAQ NTE Nam Tai Electronics NYSE NTES Netease.com Inc Ads NASDAQ NWD New Dragon Asia'A' AMEX PTR Petrochina Co Ltd ADR NYSE PWRD Perfect World Co Ltd NASDAQ QXM QIAO XING Mobile Communication NYSE SCR SIMCERE PHARMACEUTICAL GRP NYSE SEED Origin Agritech Ltd NASDAQ SHI Sinopec Shanghai Petrochem ADS NYSE SMI SMIC NYSE SNDA Shanda Interactive Entertainmt NASDAQ SNP China Petro & Chem Corp NYSE SOHU Sohu.com Inc NASDAQ SOLF Solarfun Power Holdings Co Ltd NASDAQ SORL SORL Auto Parts Inc NASDAQ SPIL Siliconware Precision ADS NASDAQ SPRD Spreadtrum Communications Inc NASDAQ SSRX 3SBio Inc NASDAQ STP Suntech Power Holdings Co Ltd NYSE SVA Sinovac Biotech AMEX TBV Tiens Biotech Group USA AMEX TCM TONGJITANG CHINESE MED CO NYSE TOMO TomoTherapy Inc NASDAQ TSL Trina Solar Ltd NYSE TSM Taiwan Semiconductor Mfg ADS NYSE TSTC Telestone Technologies Corp NASDAQ UMC United Microelectronics ADS NYSE UTSI UTStarcom Inc NASDAQ VIMC Vimicro International Corp ADS NASDAQ XING Qiao Xing Universal Tel NASDS YGE Yingli Energy Hoding Co Ltd NYSE YZC Yanzhou Coal Mining ADS NYSE ZNH China Southern Airlines'H'ADS NYSE
  4. Here is Potential Broadening Top Pattern formation in @ES... I'll watch the MidChannel level for key support. Regards, Suri
  5. Here are some videos and articles to explain COT reports. ** I have no affiliation with this site, but I like the content ** The Commitment of Traders (COT) Report - Part One | Forex Technicals | Forex The Commitment of Traders (COT) Report - Part Two | Forex Technicals | Forex Building Systems with the Commitment of Traders Report | Forex Technicals | Forex Regards, Suri
  6. Hi Vishal, Thanks for your post. I do see Symmetric Triangle. Also, see ABC pattern with Time Cycle projections (based on 3/4th cycle) and Inv. H&S Pattern (from June). Regards, Suri
  7. PeterBrazel, In your code you need a condition to check if previous bar has the same criteria, then do not Plot. Here is the code plotted as ShowMe. Regards, Suri ================ vars: PlotSlow(TRUE), Displace(0), Offset(0.5), Length(21), Trigger(0); if (BarStatus(1)=2) then begin If (PlotSlow=True and (Displace >= 0 or CurrentBar > AbsValue( Displace))) then begin Value2 = jtHMA(Close, Length); If (Value2[2]<=Value2[1]) and (Value2>=Value2[1]) then Trigger = -1 else if (Value2[2]>Value2[1]) and (Value2 < Value2[1]) then Trigger = 1 else Trigger = 0; if (Trigger <> 0 and (Trigger <> Trigger[1])) then begin if (Trigger = -1) then Plot6(Low-Offset,"Up") {<--- this plots below} else if (Trigger =1) then Plot7(High+Offset,"Dn"); {<--- this plots above} end; end; end; ================
  8. I am bit puzzled... I thought I posted this chart in the morning along with my previous post and now I do not see Anyway, Here is the Broadening Pattern targets if it materializes. Broadening Patterns are rare but reliable. Some exhaustion rally may still push SPX a bit higher. Regards, Suri
  9. Another scenario for SPX.X chart is Right-Angled Broadening Top pattern.... Regards, Suri
  10. $SPX.X Wolfe Wave? Wave 4 is below Wave 2. It may be violation? Regards, Suri
  11. Pl. see the above marked line. When is High < Open?? ORB Code is written as... OH = HighD[1]-OpenD[1]; OL = OpenD[1] - LowD[1]; bMin = MinList(OH, OL); ORB = Average(bMin, 10); Regards, Suri
  12. Hi Soultrader, Here is KOSPI 200 Index ABC Chart update... Regards, Suri
  13. Hi Vishal, Thanks for your post.... Bearish Gartley patterns are very powerful patterns in the rising markets. They do signal end of the rising trend. But all X5 patterns (Gartley, Butterfly, Bat and Crab) have just about 50-60% success. I think market context is the key on how to trade them. X5 patterns form in Two types --- Retracement and Expansion patterns. The 'D' point in the pattern determines which type of pattern it may be forming. If 'D' is inside the 'XA' swing, then it is Retracement pattern (Gartley and Butterfly). If 'D' is outside the 'XA' swing, then it is Expansion pattern (Bat and Butterfly). Within Expansion patterns, if the central point 'B' is less than 0.618 of XA then it is 'Crab' pattern and if 'B' is greater than 0.618 of XA then it is 'Butterfly' pattern. Although these precise ratios are never achieved in the patterns, perfect Butterfly requires 0.786 of XA Swing. Pl. refer to Scott Carney's books for all the other rules. In the Copper 240m chart, you posted, 'D' is outside the 'XA' swing and hence it is an expansion pattern. Also, 'B' is about 0.7 of XA, hence it is a 'Bearish Butterfly' Pattern. Here are the Copper's 240m and Copper's Daily Chart. They both are Bearish Butterfly patterns. I marked the potential Butterfly targets with Time-Cycles. Regards, Suri
  14. Hi Vishal, Here is Gold's Chart with Price/Time Cycles. Regards, Suri
  15. Check LRO and MRO functions in EL. Regards, Suri
  16. Hi Soultrader, Here is KOSPI 200 Index ABC Chart with Price/Time Cycles... Regards, Suri
  17. Here is a 5-0 Pattern (Courtesy of Scott Carney) in today's @ES 610 Tick Chart. Regards, Suri
  18. In TS, Try Symbol or GetSymbolName instead of Symbolroot Regards, Suri
  19. Try Var: AlertStr(""); AlertStr = SymbolText+" " +NumtoStr(BarInterval,0)+" minute just fired off"; Alert(AlertStr); regards, Suri
  20. Thanks for updating Taq. Good call on X5. Regards, Suri
  21. Hi Taq, Thanks for your post. I do not have Nifty intraday data. Only have EOD data. But your chart looks like a 5-0 Pattern as Scott Carney describes. Perhaps your 'D' point you marked may be 50-62% of prior move?? Let us know how it worked out! Regards, Suri
  22. Hi Blowfish, It appears that link worked. Are these the same podcast as the link you posted? Thanks for posting!! Regards, Suri
  23. I consider Dr. Ari Kiev as the best Market Psychologist and his insights are more practical and to the point for serious traders. He is regarded as the top psychologist by many Hedge Funds. I have no affiliation with him or his company but I respect his work and value his research. He also has 4 very popular books. Here is Dr.Kiev's Podcast journal http://www.arikiev.com/feed.xml Regards, Suri
  24. Hi Vishal, Thank you for your post. In H&S pattern, the target is obtained by subtracting the height of the head from the neckline. The height of the head is the vertical distance between the neckline to the top of the head. Eventhough, small H&S (small width/height) are viable patterns, very rarely they materialize full and may be difficult to detect. I would look for H&S patterns with atleast 8 number of bars in each of the shoulder with a minimum of 2 pivot strength. Regards, Suri
  25. Hi Tasuki and Waveslider, I agree with both of you... I was bit doubtful of WW and need to know lot more about WWs. But I also had other reasons to trade this pattern. Perhaps this could be a variation of a Broadening Pattern?? See how overall the pattern resulted. I will post few other pics and how the setup was anticipated. I did have help from ABC Bearish/H&S Setups (from previous posts) also. Thanks for your insights. Regards, Suri
×
×
  • Create New...

Important Information

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