Announcement

Collapse
No announcement yet.

Does anyone know how to put $TICK on subchart pane?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Does anyone know how to put $TICK on subchart pane?

    I am trying to get the $TICK put on the same chart as AB #F, but I have not figured it out yet. I already know how to put the two on the same chart (not the subchart- separate pane)- but the data looks garbled. Basically I want to put the $TICK indicator where you would normally put a basic indicator (like the MACD or stachastics).

    Thanks for answering.

  • #2
    you need some efs, I think there is an example somewhere that will try to draw bars or candles (it has to draw them piece-by-piece), but I don't know the name.

    By way of an example, to get just the close, the simplest (but not efficient perhaps) solution should be (untested) an efs with just
    main() { return close(0,sym("$TICK"));}
    but more help is available on the efs forum if that doesn't get you going.

    I find Tick is a always a pain to handle, I usually plot the high and low to cope with the volatility and a short ma or two (based on OHL/3) else it is too noisy to read.

    You may want to put $Tick in the price pane, and the symbol in the indicator pane.

    Comment


    • #3
      ggreggerh1234

      Here is an EFS that I hope will accomplish what you're looking for.

      AveryH
      eSignal Support

      Comment

      Working...
      X