- Search Crypto Craft
- joyny replied Jan 19, 2023
Humans have more data input channels compared to AI now.. ok clear that all physical senses will be available to AI too. But there is 1 "sense" which is questionalbe will it be possible for AI - it is "soul" "intuition" or name it as you wish but ...
AI talking
- joyny replied Jan 17, 2023
When AI will start to develop a new AI or upgrade itself... this will be tipping point. Exponential recursive re-development and development in any field - pharma, new materials, new energy sources, new technologies, new inventions, robots etc all ...
AI talking
- joyny replied Jan 17, 2023
If AI could make money it would do it for companies that own AI infrastructure. AI will replace quite a lot of jobs related to content services (authors, lawyers, coders, etc). It is not that those authors/lawyers etc will get money.. AI owners will ...
AI talking
- joyny replied Jan 15, 2023
After additional 2 hours spent.. finally, get working EA for MT4. I did not make fixes by using my coding skills.. this was a pure AI coding result. I just instructed AI to fix various issues till we finally get it working. // Input parameters input ...
AI talking
- joyny replied Jan 14, 2023
After 2 hours here results so far. List of provided sentences to AI - according to plan what AI provided to me (see this post): MQL4 buy the dips strategy Write the basic structure of the expert advisor, including the input parameters and the ...
AI talking
- joyny replied Jan 14, 2023
yes.. AI is a tool. Human interacts with AI and that collaboration is key to success. Can't expect from AI perfect results - AI must be taught. OpenAI compared vs Replica is realy teachable AI that actually learns. Fascinating that human learns ...
AI talking
- joyny replied Jan 14, 2023
Starting from this post, you can see the process of how I interacted with AI to define requirements and fine-tune its knowledge. It is similar to communicating with a coder through a chat, so you don't have to be a coder to create an expert advisor ...
AI talking
- joyny replied Jan 14, 2023
bool IsDayAndTimeAllowed() { // Get the current day of the week int dayOfWeek = DayOfWeek(); // Get the current hour int hour = Hour(); // Check if current day is allowed for trading if (dayOfWeek == 0 || dayOfWeek == 6) { return false; // Not ...
AI talking
- joyny replied Jan 14, 2023
bool CanTrade() { // Get the current day of the week int dayOfWeek = DayOfWeek(); // Get the current hour int hour = Hour(); // Check if current day is allowed for trading if (dayOfWeek == 0 || dayOfWeek == 6) { return false; // Not allowed to trade ...
AI talking
- joyny replied Jan 14, 2023
// OnTick function void OnTick() { // Check if current day and time is allowed for trading if (IsDayAndTimeAllowed()) { // Check if higher timeframe trend is an uptrend if (IsHigherTimeframeTrendUptrend()) { EntryLogic(); ExitLogic(); } } } // ...
AI talking
- joyny replied Jan 14, 2023
// Input parameters input double dipLevel = 0.03; // Percentage of dip to buy input double stopLoss = 0.02; // Percentage of stop loss input double takeProfit = 0.05; // Percentage of take profit input double lots = 1.0; // Number of lots to buy // ...
AI talking
- joyny replied Jan 14, 2023
// OnTick function void OnTick() { EntryLogic(); ExitLogic(); } // Entry logic function void EntryLogic() { // Check if entry conditions are met // if (...) // { // // Entry code goes here // } } // Exit logic function void ExitLogic() { // Check if ...
AI talking
- joyny replied Jan 14, 2023
// Input parameters input double dipLevel = 0.03; // Percentage of dip to buy input double lots = 1.0; // Number of lots to buy // OnInit function void OnInit() { // Initialization code goes here } // OnTick function void OnTick() { // Get the ...
AI talking
- joyny replied Jan 14, 2023
Here AI responded: Sure, here is a list of steps you could follow to break down the code and get all the pieces of the code step by step: Clearly define the requirements and objectives of the expert advisor. Write the basic structure of the expert ...
AI talking
- joyny replied Jan 14, 2023
#property copyright "Copyright 2019, MyCompany" #property link "https://www.mycompany.com" #property version "1.00" #property strict input double StopLoss = 100.0; input double TakeProfit = 200.0; input double DipPercent = 5.0; input int MagicNumber ...
AI talking
- joyny replied Jan 14, 2023
#property copyright "Copyright 2019, MyCompany" #property link "https://www.mycompany.com" #property version "1.00" #property strict input double StopLoss = 100.0; input double TakeProfit = 200.0; input double DipPercent = 5.0; int OnInit() { // ...
AI talking
- joyny replied Jan 14, 2023
Continue... And AI result: #property copyright "Copyright 2019, MyCompany" #property link "https://www.mycompany.com" #property version "1.00" #property strict input double StopLoss = 100.0; input double TakeProfit = 200.0; input double DipPercent = ...
AI talking
- joyny replied Jan 14, 2023
With utmost enthusiasm, let us implore our sophisticated AI to elevate our expert advisor by incorporating the imperative logic: #property copyright "Copyright 2019, MyCompany" #property link "https://www.mycompany.com" #property version "1.00" ...
AI talking