
Topics
Replies
Spotware
29 Oct 2013, 16:51
RE: RE:
breakermind said:
cogs said:
Forum posts can be deleted in the database at the hosting the server.
I don't know why you don't respect this users request?
Hi,
exactly as you write.
Maybe the admin does not know it :D:D:D:DAdmin can not know what is intellectual property, maybe want to learn ...
Hi breakermind,
We're working on a way to let users disable their own cTDN account.
Your posts will remain, but they'll appear under the name 'Account deleted by user', or something similar.
We'll be sure to let you know as soon as you're able to do this.
@Spotware
Spotware
29 Oct 2013, 16:18
RE:
Futuresmo said:
Hi
Is there any alternative to Stop() method in API. The intention is to start robot automatically rather than manually when orders are filled. Ideally to start robot from another robot
Thanks
You cannot start a robot from another robot for the time being.
@Spotware
Spotware
29 Oct 2013, 15:50
If you are trying to access the tick volume of a specific series of another symbol then:
private MarketSeries series1; //... protected override void Initialize() { symbol1 = MarketData.GetSymbol(Symbol1); //... series1 = MarketData.GetSeries(symbol1, TimeFrame); //... } public override void Calculate(int index) { //... var openTime = MarketSeries.OpenTime[index]; var series1Index = GetIndexByDate(series1, openTime); var symbol1Volume = series1.TickVolume[series1Index]; }
See GetIndexByDate method in this example
@Spotware
Spotware
29 Oct 2013, 14:53
RE:
jhtrader said:
QUESTIONS
Firstly please explain why I cant use the Print method when I try compiling it with the Print method it returns errors..
See the example below on how to use the Print method in your class.
Second how do I compile this class and reference it... and call it from myRobot?
Compile the same way. Reference by adding a reference to your class algo file.
Your class:
using System; namespace Portofolio { public class PortfolioOptions { Array portfolioOptions = Array.CreateInstance(typeof(string), 1, 1, 3); Action<object> print; public PortfolioOptions(Action<object> print) { this.print = print; portfolioOptions.SetValue("US", 0, 0, 0); portfolioOptions.SetValue("Buy", 0, 0, 1); portfolioOptions.SetValue("USDCHF", 0, 0, 2); } public void CheckOptions(string pName, Action<object> print) { foreach (string option in portfolioOptions) { if (option == pName) print(pName); } } } }
Robot using your class:
//#reference: Portofolio.algo using System; using cAlgo.API; using cAlgo.API.Indicators; using cAlgo.API.Internals; using cAlgo.API.Requests; using cAlgo.Indicators; using Portofolio; namespace cAlgo.Robots { [Robot(TimeZone = TimeZones.UTC)] public class NewRobot : Robot { protected override void OnStart() { PortfolioOptions portofolio = new PortfolioOptions(Print); portofolio.CheckOptions(Symbol.Code, Print); } } }
Further, see the examples at the end of these documents for Array syntax
http://msdn.microsoft.com/en-us/library/System.Array(v=vs.110).aspx
http://msdn.microsoft.com/en-us/library/bybh3298.aspx
@Spotware
Spotware
29 Oct 2013, 11:32
RE: RE:
jhtrader said:
Question 1.
Access the last 10 highs - no matter what I do I cant seem to get the real highs and lows as on the chart..
for (int i = MarketSeries.High.Count - 1; i > MarketSeries.High.Count - 11; i--)
{
Print("Val H {0}", min5.High[i]);}
See the example for GetIndexByDate here: /forum/whats-new/1463#3
The code above prints the High of the min 5 timeframe. The chart will have the prices of the timeframe chosen when you add the instance of the robot.
I also just tried to get the last high.. in the following way.. and it too didnt work.
Print("Val H {0}", min5.High[min5.High.Count - 1]);
min5.High.LastValue
Question 2.
How to put these values into a list. so that the values are cumulative
List<double> cummulativeHighs = new List<double>(); //... cummulativeHighs.Add(min5.High.LastValue + cummulativeHighs.LastOrDefault());
Question 3.
loop through and compare until currRange < cummulative range and return the index.
See the previous reply post.
@Spotware
Spotware
31 Oct 2013, 15:33
We have this in our plans for future implementation.
@Spotware