Recent content by yosuji198

  1. Y

    Multi-time-Frame Indicators with Multicharts?

    Ok! I finally figured it out!. The correct code is as below. Thanks everyone for trying! Inputs: FastLength(12), SlowLength(26), SignalLength(9); Variables: FastMA(0), SlowMA(0), MACD(0), Signal(0), MACD_3(0), Signal_3(0), FastMA_3(0), SlowMA_3(0); FastMA = XAverage(Close, FastLength)...
  2. Y

    Multi-time-Frame Indicators with Multicharts?

    I misspoke - I haven't figured it out. My 3 minute numbers are wrong. I can confirm that the MACD and Signal numbers (in the GPT - MACD columns below) are correct. But the Macd 3 min and Signal 3 min numbers are wrong. The correct numbers for the 3 minute are in the below (GPT MTF) section...
  3. Y

    Multi-time-Frame Indicators with Multicharts?

    No worries all. I figured it out on my own using some old youtube videos. Correct code is below. To make it work you have to have a chart representing Data1 and another chart representing Data2. Then the following code works: Inputs: FastLength(12), SlowLength(26), SignalLength(9)...
  4. Y

    Multi-time-Frame Indicators with Multicharts?

    Haha. Thanks. It compiled fine before but i'm just trying to figure out the multi time frame thing. If you have an extra minute again please see if it could work on your charts
  5. Y

    Multi-time-Frame Indicators with Multicharts?

    Thanks for the suggestion but it didn't work. I tried the below and again 1 minute and 3 minute plots have the same number FastMA_3 = XAverage(((c data1+ c data2)/2), FastLength); SlowMA_3 = XAverage(((c data1+ c data2)/2), SlowLength);
  6. Y

    Multi-time-Frame Indicators with Multicharts?

    Your code does compile. But it's still not showing multi time frame. As shown below the MACD and Signal have the same values as the 3 minute MACD and Signal. Is there a way to apply the indicator such that it shows both the 1 and 3 minute? Thanks!
  7. Y

    Multi-time-Frame Indicators with Multicharts?

    Hi Community, I'm trying to create a code that has a simple MACD on 1 minute and 3 minute timeframe simultaneously. Problem is it doesn't work. In my Multicharts I have loaded both the 1 minute and the 3 minute charts into the same Window. But for the Indicator when I go into its properties and...
  8. Y

    Easy platform for automated Equity Options trader with IB?

    ib_insync I use it for all my code with Interactive Brokers. I am also testing Multicharts connected to Interactive Brokers. Multicharts uses EasyLanguage which is easier than python. Another option to look at.
  9. Y

    How to bring back order confirmation window once disabled

    Hi Community, Recently I disabled order confirmation/check margin impact window on TWS by clicking on that check box when it popped up. Now I want it back and for the life of me can't find anywhere in setting to bring it back. Does anyone know? Thanks!
  10. Y

    Automatic limit price in Order Entry window?

    I moved to Ninjatrader. It's got exactly what I need out the box :strong:
  11. Y

    Automatic limit price in Order Entry window?

    Unfortunatley the hotkeys don't work. They don't automatically transmit the correct trailing stop.
Back
Top