Recent content by Cator

  1. C

    tick charts?

    Hi again,, the program I use is called 'amibroker'. A very easy to use program where with a little coding you can create whatever you propose for your trading sistem as most of it you can find in their library,,,,, find out what you need,,, copy and paste.. here is a quick start code for my...
  2. C

    tick charts?

    I ALWAYS use tick charts...and NEVER time periods charts. the reason is that I can adjust the chart to an average tradeable range,, it would be impossible using time frame,,, as you could be in a 10pip range,, price move up or down over 100 pips in ONE minute and you would see nothing but a...
  3. C

    Joe Doaks and ET Develop the Perfect System

    AMA stands for adapted moving average
  4. C

    Stop Losses are for Losers

    I think it is a bit extreme to say stops are for loosers,,, there should be a strategy for each situation,,, for instance,, I have a system that doesnot require stops (wiew sample in www.colective2.com/go/catordow) also I have another system that works with stops, but, they are proffit taking...
  5. C

    Joe Doaks and ET Develop the Perfect System

    you are absolutely right, thats what they are,,,, I use them to smooth the calculations of range, stops, trends etc.. kindly Rafael (spain)
  6. C

    Joe Doaks and ET Develop the Perfect System

    the plot line should be PlotOHLC( haOpen, haHigh-1, haLow+1, haClose, "close " + Name(), colorWhite, styleBar ); appologies Rafael (spain)
  7. C

    Joe Doaks and ET Develop the Perfect System

    hi again,,, they are easy to find,, use a scrollbar to quickly change tick bars time frame.. this is what I use with AFL tics=Param("tics",-115,-10000,0); TimeFrameSet(tics); HaClose = (O+H+L+C)/4; HaOpen = AMA( Ref( HaClose, -1 ), 0.5 ); HaHigh = Max( H, Max( HaClose, HaOpen...
  8. C

    Joe Doaks and ET Develop the Perfect System

    I can see a good bar on a chart and IMO the best bar,, ...that is as follows: to get a good trade I adjust time frame in a way that it will show me the formation of a decreassing trinagle up or down trend,,, it doesnt really matter as what counts is that the price will scape up or down at the...
Back
Top