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.

Tams

Market Wizard
  • Content Count

    4075
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Tams

  1. the header should have given you a clue what this indicator is about.
  2. Tams

    VPCI As PaintBar

    1. READ THE MANUAL and the REFERENCE lots of sample code in there 2. Press [F1] in TS for HELP 3. You have NOT tried the search function of this site !!!!! (ask me how I knew.)
  3. Tams

    VPCI As PaintBar

    arrow is available in MultiCharts, but not in TradeStation.
  4. John Bollinger explained this in his book "Bollinger on Bollinger Bands".
  5. can you post a chart with lines and arrows to illustrate? ...so that we can be on the same page? if this knowledge is important enough to learn, and you are serious enough to want to be certain about getting it absolutely right, I am sure it wouldn't be too much trouble to whip up a few lines and arrows on a chart.
  6. I also think it is messy to have those unending coding requests in the Trading Indicator section. It makes the forum unorganized and unprofessional looking. James used to have a warning notice in the Trading Indicator forum. It worked great, but somehow it was removed.
  7. Please use code tag when you are posting your codes. un-tagged code looks like this: Input: length(20); Variables: avg(0); avg = average( close, length); tagged code looks like this: Input: length(20); Variables: avg(0); avg = average( close, length); the tag key is at the top right of the message window. simply highlight your code, then click on the # key.
  8. Tams

    VPCI As PaintBar

    ..................... see post #7 and this: http://www.traderslaboratory.com/forums/f17/code-tag-8674.html
  9. Tams

    VPCI As PaintBar

    what program are you using?
  10. Tams

    VPCI As PaintBar

    you are jumping ahead, you haven't done these parts yet...
  11. Tams

    VPCI As PaintBar

    you should wrap your code with the code tag. it is the [b][size="4"]#[/size][/b] key at the top right of the message window tagged code looks like this: [code] Input: length(20); Variables: avg(0); avg = average( close, length);
  12. Tams

    VPCI As PaintBar

    I would suggest you to start from STEP ONE: go download this book: "Getting Started with EasyLanguage" this is the book you need if you're thinking about using EasyLanguage but don't know where to start. Documentation lots of useful examples for you to copy-and-paste.
  13. any oscillators will work... it will tell you when to buy, it will tell you when to sell. alas only one third of the time it is in sync with the market. one third of the time it is leading too far ahead, and the other third of the time it is lagging too far behind. no dumb marketer will show you a chart when the oscillator is not in sync. such is the life of an indicator marketer.
  14. most of the datafeed are not good enough for MD. if you just want a cursory look, that's ok. but if you are serious (ie you want to make money with MD), then you should get the real mccoy.
  15. 7 hours and... zero download so far... Yay!
  16. Tams

    VPCI As PaintBar

    what you need is the rest of the logic... If (VPCI > AvgVPCI) and (VPCI > 0) Then PlotPaintBar (High, Low) ELSE...
  17. nice blog... thanks for sharing. you are not alone... this type of experience is being repeated all over the world everyday with brutal unforgiving consistency.
  18. Tams

    FOMC Today

    Tuesday Oct 12 FOMC Minutes 2:00 PM ET
  19. sign up for a free demo... and check them out for yourself.
  20. a programming language is a method to communicate with the computer... to get the computer to do a series of calculations, and then spit out the result in a human-understandable way. ie through the printer as text, or to the monitor as a graph/chart, etc. C++ is a programming language, so as VB, or C#, or Java... or EasyLanguage. some languages are easy to learn, some languages are powerful and flexible, but require more effort to master. some languages are specialized for statistical/quant calculations, some languages are designed for trading purposes (eg. EasyLanguage) e.g you can use any computer language to write a program to read the datafeed from eSignal, then write a routine to parse the data into ticks, seconds, minutes, hours, and days intervals... then create a system to save them to an easily retrievable realtime database... then write a method to call the database at will to pull up the specific data you want, then tell the computer step-by-step how to plot the data in a minute-by-minute bar chart. and then write a program to add the data together... then divide them by the number of periods to arrive at a moving average, while holding onto the hundreds of data points of the moving average, teach the computer how to plot a line onto the screen, so that it overlays the bar chart according to the price scale... and when you write in the code [intrabarordergeneration=true], the computer will know that you want the order sent to the broker immediately, but not wait until the end of the bar. ...I hope you start to get the big picture.
  21. you should post each indicator in its own thread, as if you are posting an indicator, with the indicator's name as the thread title... ...then ask ppl for the text file of that indicator.
  22. You can start an new thread and post the codes there. I will open them and post the text file here for you.
×
×
  • Create New...

Important Information

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