Jump to content
Medved Trader Forums

merlin8121

Members
  • Posts

    128
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by merlin8121

  1. // Var Name: "BollingerBands_Top" contains Bollinger Bands(20,2).Top // Var Name: "PriceChannels_Top" contains Price Channels(20).Top // Var Name: "PriceChannels_Bottom" contains Price Channels(20).Bottom // Var Name: "BollingerBands_Bottom" contains Bollinger Bands(20,2).Bottom // Var Name: "VWAP_Line" contains VWAP (Intraday)().Line // Var Name: "PriceChannels_Center" contains Price Channels(20).Center // Var Name: "FibonacciPivots_Res1" contains Fibonacci Pivots (Intraday)(def).Res1 // Var Name: "RSI_Line" contains RSI(20,2).Line // Var Name: "CCI_Line" contains CCI(14).Line public void MainCalculation() {DefinePaintbarParameter("MINVOL", "Bar Volume", true,0, 1000000000000, 1000, 15000); if (BarVolume<GetPaintbarParameter("MINVOL")) return; if (Close > BollingerBands_Top) { SetColorAndShape(SysColor.MainIndicator2, PBShape.Rectangle); SetScanResult("Boll UP"); return; } if (Close > PriceChannels_Top) { SetColorAndShape(SysColor.MainIndicator2, PBShape.ArrowNE); SetScanResult("Donchiian Upp"); return; } if (Close < PriceChannels_Bottom) { SetColorAndShape(SysColor.MainIndicator7, PBShape.ArrowSE); SetScanResult("Donchiian Down"); return; } if (Close < BollingerBands_Bottom) { SetColorAndShape(SysColor.MainIndicator7, PBShape.Rectangle); SetScanResult("Boll Down"); return; } if (Close.CrossesUp(VWAP_Line, 0)) { SetColorAndShape("Vwap", PBShape.W, SysColor.MainIndicator1); SetScanResult("VWAP UP"); return; } if (Close.CrossesUp(PriceChannels_Center, 0)) { SetColorAndShape(SysColor.MainIndicator2, PBShape.ArrowNE_Hollow); SetScanResult("Donchian center cross"); return; } if (Close.Crosses(FibonacciPivots_Res1, 0)) { SetColorAndShape(SysColor.Annotations, PBShape.TriangleUp_Hollow); SetScanResult("Cross fib Resist"); return; } if (RSI_Line < 30) { SetColorAndShape(SysColor.MainIndicator3, PBShape.Circle); SetScanResult("Oversold"); return; } if (BarVolume > BarVolume[1]) { SetColorAndShape(SysColor.MainIndicator5, PBShape.ArrowUp); SetScanResult("Vol UP"); return; } if (CCI_Line.CrossesUp(-150, 0)) { SetColorAndShape("CCI", PBShape.C, 0xFF0A54FF); SetScanResult("CCI -150 up"); return; } }
  2. MT scanner running on 1200 symbols (using Yahoo realtime quotes) . With multiple conditions.
  3. Hello guys; i was trying to connect trade Ideas with MT and it works well !!!. At this moment, the "external link" feature of trade ideas works linking it with the lvl2 window of MT. I dont know why, but didn't work when i try to link the "external link" of TI with the main chart of MT, but it would be better if its possible to fix it. Anyway, its a great thing to have the ability to link TI with MT!
  4. Hello Jerry; i would like a scanner the way tc2000, with a grid format showing conditions met . Thx
×
×
  • Create New...