From f3b966cd011bdf6a95bfd568fdcd8db622e6ee11 Mon Sep 17 00:00:00 2001 From: Quant Freedom 1022 Date: Wed, 6 Dec 2023 16:08:56 -0800 Subject: [PATCH] Deployed f44de7a with MkDocs version: 1.5.3 --- 404.html | 391 +--- index.html | 452 +--- js/open_in_new_tab.js | 45 + nav_file/index.html | 418 +--- objects.inv | Bin 1615 -> 1697 bytes quantfreedom/enums/index.html | 393 +--- quantfreedom/exchanges/__init__/index.html | 2000 ---------------- .../apex_exchange/__init__/index.html | 2002 ----------------- .../exchanges/apex_exchange/apex/index.html | 399 +--- .../binance_exchange/__init__/index.html | 2002 ----------------- .../binance_exchange/binance_us/index.html | 393 +--- .../binance_exchange/binance_usdm/index.html | 393 +--- .../bybit_exchange/__init__/index.html | 2002 ----------------- .../exchanges/bybit_exchange/bybit/index.html | 393 +--- quantfreedom/exchanges/exchange/index.html | 393 +--- .../mufex_exchange/__init__/index.html | 2002 ----------------- .../mufex_exchange/live_mufex/index.html | 393 +--- .../exchanges/mufex_exchange/mufex/index.html | 391 +--- quantfreedom/helper_funcs/index.html | 393 +--- quantfreedom/indicators/__init__/index.html | 2000 ---------------- .../indicators/tv_indicators/index.html | 393 +--- quantfreedom/live_mode/index.html | 393 +--- quantfreedom/nb_funcs/__init__/index.html | 2000 ---------------- .../nb_funcs/nb_helper_funcs/index.html | 395 +--- .../nb_indicators/__init__/index.html | 2002 ----------------- .../nb_indicators/nb_indicators/index.html | 395 +--- .../nb_order_handler/__init__/index.html | 2002 ----------------- .../nb_increase_position/index.html | 393 +--- .../nb_order_handler/nb_stop_loss/index.html | 393 +--- .../nb_funcs/nb_simulate/__init__/index.html | 2002 ----------------- .../nb_simulate/nb_sim_base/index.html | 393 +--- .../nb_funcs/nb_simulate/nb_sim_df/index.html | 391 +--- .../nb_funcs/nb_simulate/nb_sim_or/index.html | 393 +--- .../nb_strategies/__init__/index.html | 2002 ----------------- .../nb_strategies/nb_strategy/index.html | 395 +--- .../order_handler/__init__/index.html | 2000 ---------------- .../increase_position/index.html | 393 +--- quantfreedom/order_handler/order/index.html | 391 +--- .../order_handler/stop_loss/index.html | 391 +--- quantfreedom/simulate/index.html | 393 +--- .../strategies/ex_strat_01/index.html | 1164 ++++++---- .../strategies/ex_strat_02/index.html | 704 +++--- .../{__init__ => strategy}/index.html | 967 ++++---- quantfreedom/utils/index.html | 393 +--- search/search_index.json | 1 + sitemap.xml.gz | Bin 127 -> 127 bytes {SUMMARY => summary}/index.html | 424 +--- 47 files changed, 3953 insertions(+), 34065 deletions(-) create mode 100755 js/open_in_new_tab.js delete mode 100755 quantfreedom/exchanges/__init__/index.html delete mode 100755 quantfreedom/exchanges/apex_exchange/__init__/index.html delete mode 100755 quantfreedom/exchanges/binance_exchange/__init__/index.html delete mode 100755 quantfreedom/exchanges/bybit_exchange/__init__/index.html delete mode 100755 quantfreedom/exchanges/mufex_exchange/__init__/index.html delete mode 100755 quantfreedom/indicators/__init__/index.html delete mode 100755 quantfreedom/nb_funcs/__init__/index.html delete mode 100755 quantfreedom/nb_funcs/nb_indicators/__init__/index.html delete mode 100755 quantfreedom/nb_funcs/nb_order_handler/__init__/index.html delete mode 100755 quantfreedom/nb_funcs/nb_simulate/__init__/index.html delete mode 100755 quantfreedom/nb_funcs/nb_strategies/__init__/index.html delete mode 100755 quantfreedom/order_handler/__init__/index.html rename quantfreedom/strategies/{__init__ => strategy}/index.html (71%) create mode 100755 search/search_index.json rename {SUMMARY => summary}/index.html (85%) diff --git a/404.html b/404.html index a34ae2ed..4723a180 100755 --- a/404.html +++ b/404.html @@ -101,6 +101,43 @@ + + +
@@ -329,8 +366,6 @@ - - @@ -370,34 +405,11 @@ -
  • - - - - - init - - - - -
  • - - - - - - - - - - - - @@ -407,10 +419,10 @@ - + -
    @@ -1920,7 +1622,7 @@

    Home

    -

    TEST

    +

    Soon there will be stuff here ... until then please go to the functions section of you would like to see each function that has documentation

    @@ -1964,6 +1666,8 @@

    TEST&par + + \ No newline at end of file diff --git a/js/open_in_new_tab.js b/js/open_in_new_tab.js new file mode 100755 index 00000000..964fb4c1 --- /dev/null +++ b/js/open_in_new_tab.js @@ -0,0 +1,45 @@ +// Description: Open external links in a new tab and PDF links in a new tab +// Source: https://jekyllcodex.org/without-plugin/new-window-fix/ + +//open external links in a new window +function external_new_window() { + for(let c = document.getElementsByTagName("a"), a = 0;a < c.length;a++) { + let b = c[a]; + if(b.getAttribute("href") && b.hostname !== location.hostname) { + b.target = "_blank"; + b.rel = "noopener"; + } + } +} +//open PDF links in a new window +function pdf_new_window () +{ + if (!document.getElementsByTagName) { + return false; + } + let links = document.getElementsByTagName("a"); + for (let eleLink=0; eleLink < links.length; eleLink ++) { + if ((links[eleLink].href.indexOf('.pdf') !== -1)||(links[eleLink].href.indexOf('.doc') !== -1)||(links[eleLink].href.indexOf('.docx') !== -1)) { + links[eleLink].onclick = + function() { + window.open(this.href); + return false; + } + } + } +} + +function apply_rules() { + external_new_window(); + pdf_new_window(); +} + +if (typeof document$ !== "undefined") { + // compatibility with mkdocs-material's instant loading feature + // based on code from https://github.com/timvink/mkdocs-charts-plugin + // Copyright (c) 2021 Tim Vink - MIT License + // fixes [Issue #2](https://github.com/JakubAndrysek/mkdocs-open-in-new-tab/issues/2) + document$.subscribe(function() { + apply_rules(); + }) +} \ No newline at end of file diff --git a/nav_file/index.html b/nav_file/index.html index 8d96d8de..eca58ddc 100755 --- a/nav_file/index.html +++ b/nav_file/index.html @@ -101,6 +101,43 @@ + + +
    @@ -329,8 +366,6 @@ - - @@ -370,34 +405,11 @@ -
  • - - - - - init - - - - -
  • - - - - - - - - - - - - @@ -407,10 +419,10 @@ - + -