- Home
- Forum
- cBots API Help
- .Net.Framework // Manage References
.Net.Framework // Manage References
.Net.Framework // Manage References
Hi guys
I am trying to get a NeuralNet to run on cTrader but is this possible at all? I get errors saying I might be missing References, but I can't find them in the Reference library. All the lines of code calling the on the " using.NeuralNetwork…. " are coming up with the missing reference error. I can't find a solution anywhere here. Apologies if there is a simple answer to this, i am not a coder. Please help, many thanks.
using System;
using System.Linq;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;
using NeuralNetwork.Connections;
using NeuralNetwork.Enums;
using NeuralNetwork.HelperClasses;
using NeuralNetwork.Interfaces;
using NeuralNetwork.Neurons;
using NeuralNetwork.Settings;
using NeuralNetwork.Utils;
using System.Collections.Generic;
Hi Gwave,
Can you provide more information? What is NeuralNet? Did you download/install it somewhere? Why do you expect to see it in the Reference library?
Best Regards,
Panagiotis
RE:
PanagiotisCharalampous said:
Hi Gwave,
Can you provide more information? What is NeuralNet? Did you download/install it somewhere? Why do you expect to see it in the Reference library?
Best Regards,
Panagiotis
I downloaded original project from GitHub into Visual Studio. Then made some changes to it and now I am trying to implement this on cTrader as the information I have gathered has said it should be possible. Going by your response, I assume I am incorrect? I am not a coder and am just trying to find a solution to a problem. If it's not possible, I understand and appreciate all your help mate.
Hi Gwave,
If you already have the project then you can add it as an existing project to your cBot solution and then add it as a reference in your cBot project. Read this post, it could be helpful.
Best Regards,
Panagiotis
RE:
PanagiotisCharalampous said:
Hi Gwave,
If you already have the project then you can add it as an existing project to your cBot solution and then add it as a reference in your cBot project. Read this post, it could be helpful.
Best Regards,
Panagiotis
Hi Panagiotis
Thank you very much for that post. It was very helpful. I also ended up " brute forcing" my way to a solution.
Regards
Gwave