Topics
Replies
croucrou
30 Mar 2016, 22:56
All indications are that you have done something wrong while adding the third moving average.
I assumed above, that the positions' execution has been missed and that has been the reason for printing the values. Operator different from "&&" could cause that.
If the positions open and close correctly and only the printed values are wrong, it seems you have not been refering to the values of that moving average or expected bar.
Check carefully the added part of the code, with emphasis on printing line and definition of that moving average (period or bar number).
@croucrou
croucrou
28 Mar 2016, 14:45
Actually this needs one more thing to work. Now it is complete:
using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; using cAlgo.Indicators; namespace cAlgo { [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class NewIndicator : Indicator { private DirectionalMovementSystem adx; protected override void Initialize() { adx = Indicators.DirectionalMovementSystem(14); } public override void Calculate(int index) { if (!IsLastBar) return; if (adx.ADX.LastValue > 20) { ChartObjects.RemoveObject("Alert"); ChartObjects.DrawText("Alert", "ADX above 20!", StaticPosition.BottomLeft, Colors.Yellow); } } } }
@croucrou
croucrou
27 Mar 2016, 01:55
You can do this like this:
using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; namespace cAlgo.Indicators { [Indicator(IsOverlay = true)] public class MultiSymbolMarketInfo : Indicator { private Symbol symbol1, symbol2, symbol3, symbol4, symbol5, symbol6, symbol7; [Parameter(DefaultValue = "EURGBP")] public string Symbol1 { get; set; } [Parameter(DefaultValue = "GBPUSD")] public string Symbol2 { get; set; } [Parameter(DefaultValue = "EURUSD")] public string Symbol3 { get; set; } [Parameter(DefaultValue = "EURJPY")] public string Symbol4 { get; set; } [Parameter(DefaultValue = "AUDJPY")] public string Symbol5 { get; set; } [Parameter(DefaultValue = "EURCAD")] public string Symbol6 { get; set; } [Parameter(DefaultValue = "GBPJPY")] public string Symbol7 { get; set; } private double spread(Symbol symbol) { return Math.Round(symbol.Spread / symbol.PipSize, 1); } private string format(Symbol symbol) { if (symbol.Code.Contains("JPY")) return string.Format("{0}\t\t Ask: {1}\t Bid: {2}\t Spread: {3}", symbol.Code, symbol.Ask, symbol.Bid, spread(symbol)); else return string.Format("{0}\t Ask: {1}\t Bid: {2}\t Spread: {3}", symbol.Code, symbol.Ask, symbol.Bid, spread(symbol)); } private string text(Symbol symbol) { return format(symbol); } private Colors color(Symbol symbol) { if (spread(symbol) >= 2) return Colors.Lime; else return Colors.Yellow; } private void printText(string newLine, Symbol symbol) { ChartObjects.RemoveObject(text(Symbol)); ChartObjects.DrawText(symbol.Code, newLine + text(symbol), StaticPosition.TopLeft, color(symbol)); } protected override void Initialize() { symbol1 = MarketData.GetSymbol(Symbol1); symbol2 = MarketData.GetSymbol(Symbol2); symbol3 = MarketData.GetSymbol(Symbol3); symbol4 = MarketData.GetSymbol(Symbol4); symbol5 = MarketData.GetSymbol(Symbol5); symbol6 = MarketData.GetSymbol(Symbol6); symbol7 = MarketData.GetSymbol(Symbol7); } public override void Calculate(int index) { if (!IsLastBar) return; printText("", symbol1); printText("\n", symbol2); printText("\n\n", symbol3); printText("\n\n\n", symbol4); printText("\n\n\n\n", symbol5); printText("\n\n\n\n\n", symbol6); printText("\n\n\n\n\n\n", symbol7); } } }
@croucrou
croucrou
25 Mar 2016, 18:29
The names of the added symbol names are just built of smaller letters and the words are more narrow. You could add one more "/t" after these symbol's codes as they need one more "Tab" to get to the same column. You might want to check that in any text editor.
I am using Chrome and have no issues.
@croucrou
croucrou
05 Aug 2016, 23:12
You have to try better with your searching. Here it is:
/api/guides/indicators#el12
@croucrou