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.

Antony

Members
  • Content Count

    1
  • Joined

  • Last visited

Personal Information

  • First Name
    Antony
  • Last Name
    Augustine
  • City
    Cochin, India
  • Country
    India
  • Gender
    Male
  • Occupation
    Sr. Technical Analyst & Strategist
  • Biography
    Specialized in TradeStation9, NinjaTrader7 and MetaTrader4
  • Interests
    Developing automated Trading Algorithms on Tradestation platform. Developing technical indicators
  • LinkedIn
    http://in.linkedin.com/pub/antony-augustine/23/907/431

Trading Information

  • Vendor
    Software Vendor
  • Favorite Markets
    @ES, @FDAX, Nifty
  • Trading Years
    5
  • Trading Platform
    TradeStation, MetaTrader4, NinjaTrader7
  1. Paste this code at end of the indicator {------------------------------------------------------------------------------} Once Begin Value1 = Text_new(D, T, H, "FastLength1"); Value2 = Text_new(D, T, H, "MedLength"); Value3 = Text_new(D, T, H, "SlowLength"); End; Text_SetString(Value1, " [" + NumToStr(FastLength,0) + "]"); Text_SetLocation(Value1, D, T, FastAvg); Text_SetColor(Value1, Red); Text_SetStyle(Value1, 0, 2) ; Text_SetString(Value2, " [" + NumToStr(MedLength,0) + "]"); Text_SetLocation(Value2, D, T, MedAvg); Text_SetColor(Value2, Red); Text_SetStyle(Value2, 0, 2) ; Text_SetString(Value3, " [" + NumToStr(SlowLength,0) + "]"); Text_SetLocation(Value3, D, T, SlowAvg); Text_SetColor(Value3, Red); Text_SetStyle(Value3, 0, 2) ; {------------------------------------------------------------------------------}
×
×
  • Create New...

Important Information

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