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.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

Search the Community

Showing results for tags 'thinkscript'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to Traders Laboratory
    • Beginners Forum
    • General Trading
    • Traders Log
    • General Discussion
    • Announcements and Support
  • The Markets
    • Market News & Analysis
    • E-mini Futures
    • Forex
    • Futures
    • Stocks
    • Options
    • Spread Betting & CFDs
  • Technical Topics
    • Technical Analysis
    • Automated Trading
    • Coding Forum
    • Swing Trading and Position Trading
    • Market Profile
    • The Wyckoff Forum
    • Volume Spread Analysis
    • The Candlestick Corner
    • Market Internals
    • Day Trading and Scalping
    • Risk & Money Management
    • Trading Psychology
  • Trading Resources
    • Trading Indicators
    • Brokers and Data Feeds
    • Trading Products and Services
    • Tools of the Trade
    • The Marketplace
    • Commercial Content
    • Listings and Reviews
    • Trading Dictionary
    • Trading Articles

Calendars

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


First Name


Last Name


Phone


City


Country


Gender


Occupation


Biography


Interests


LinkedIn


How did you find out about TradersLaboratory?


Vendor


Favorite Markets


Trading Years


Trading Platform


Broker

Found 8 results

  1. Hi guys good nigth, the last day I was codding some basic script but it doesent work properlly beacause, the script never plot any signal or make some order, if you can help me, I'll be grateful input mediamovilrapida = 4; input mediamovilintermedia = 9; input mediamovillenta = 18; def ema1 = SimpleMovingAvg (length = mediamovilrapida); def ema2 = SimpleMovingAvg (length = mediamovilintermedia); def ema3 = SimpleMovingAvg (length = mediamovillenta); def buy = mediamovilintermedia crosses above mediamovillenta; def sell = mediamovilintermedia crosses below mediamovillenta; AddOrder(type = OrderType.BUY_TO_OPEN, condition = buy, arrowColor = Color.LIME, name = "Cruce de medias"); AddOrder(type = OrderType.SELL_TO_CLOSE, condition = sell, arrowColor = Color.LIME, name = "Cruce de mediasVenta") .
  2. Does anyone have the thinkscript code for Ehlers RocketRSI that’s in Stocks & Commodities May 2018 issue?
  3. I'm attempting to learn and apply the fold command in TOS, but my code is not plotting correctly. Could someone take a look at it and get it to work? I know how to code DO LOOPS in basic language and I'm having trouble doing it in TS. One problem that I have with this is controlling the increments in the iteration. I don't get any syntax errors, but this code does not plot correctly and I cannot figure out why. It should plot horizontal lines at different levels. ***************************************************** def HAV = HighestAll(High); def LAV = LowestAll(Low); input Direction = {default GridUp, GridDown}; input n = 4; # # ============================================================ # SWITCH BETWEEN DIRECTIONS # ============================================================ # def Mode; switch (Direction) { case GridUp: Mode = 1; case GridDown: Mode = 0; } def StartPoint = if Mode == 1 then LAV else HAV; plot GannLine = fold i = 1 to n with j = 45 do if Mode == 1 then Sqrt(StartPoint) + ((i * j)/180) else Sqrt(StartPoint) - ((i * j)/180);
  4. Please see attachment. Those arrows are real time! I think it's awesome. Tell me what you think!
  5. hello, dear all, I want to protect my thinkscript at TOS platform, is there any possibilities for that give a password, that available for some period of time do you have a link , so I can learn how to do that thanks in advanced Yohanes
  6. Hello, I hope someone can help me with this. What I am trying to do is to scan for stocks that are within 25 cents or less of the previous days lows on an intraday basis in the stock hacker for TOS. Thanks
  7. Hello, I hope someone can help me with this. What I am trying to do is to scan for stocks that are within 25 cents of the previous days lows on an intraday basis in the stock hacker for TOS. Thanks
  8. I was wondering if anybody knew how to highlight segments of time within thinkscript. I know there is a native option to highlight after-hours time segments so I imagine there has to be a way to do this for user-defined segments of time. Anyone know how this is done?
×
×
  • Create New...

Important Information

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