diff --git a/src/lib/components/Footer.svelte b/src/lib/components/Footer.svelte index 3f1edae8..47f825a0 100644 --- a/src/lib/components/Footer.svelte +++ b/src/lib/components/Footer.svelte @@ -150,6 +150,13 @@ >Support Us ❤ +
  • + FAQ +
  • diff --git a/src/routes/contact/+page.svelte b/src/routes/contact/+page.svelte index 42225e65..26e2036b 100644 --- a/src/routes/contact/+page.svelte +++ b/src/routes/contact/+page.svelte @@ -29,7 +29,7 @@ >
    diff --git a/src/routes/faq/+page.svelte b/src/routes/faq/+page.svelte new file mode 100644 index 00000000..33428b7d --- /dev/null +++ b/src/routes/faq/+page.svelte @@ -0,0 +1,216 @@ + + + + +
    + + +
    +
    +
    +
    +
    +

    + Frequently Asked Questions +

    +
    + +
    +
    +

    + Is there a guide on how to use Stocknear’s features? +

    +

    + Yes! We've created the + Learning Center to explain each feature in detail—what it does, how to integrate + it into your strategies, and its market impact. We update it regularly, + so check back often for new content. +

    + +

    + How long does it take to see earnings releases? +

    +

    + Earnings reports are available on Stocknear within 1-5 minutes + after they go live. +

    + +

    + Why is your data different from other finance sites? +

    +

    + Like other platforms, we source data from third-party providers. + With thousands of stocks and funds worldwide, manual data + collection is impractical. +

    +

    + Data providers rely on automated methods, which can lead to + variations between platforms. Differences in definitions and + collection techniques can cause slight discrepancies. +

    +

    + If you notice an inaccuracy, please contact us at {emailAddress}. +

    + +

    + Is the options data real-time or delayed? +

    +

    + Our options flow feature provides real-time options data from Benzinga without delays. +

    + +

    + Why do other platforms show options data that Stocknear doesn’t? +

    +

    + We focus on unusual options activity from hedge funds and + institutional traders. Retail investor contracts are excluded to + eliminate noise and highlight significant market moves. +

    + +

    + Is Dark Pool data real-time or delayed? +

    +

    + Dark Pool data is delayed by 15 minutes. We partner with major + exchanges to provide exclusive Wall Street insights typically + reserved for institutional traders. +

    + +

    + I found an error in the data. What should I do? +

    +

    + Please email {emailAddress}, and we’ll investigate immediately. +

    +

    + We manually verify every error report and work with data + providers to ensure corrections are made at the source. +

    + +

    + Can I request new features? How can I contact you? +

    +

    + Absolutely! Email us or join our official Discord for quicker responses from our dev team. We’re always open to new + ideas to improve the platform. +

    + +

    + Do you offer an API? +

    +

    + Not at the moment. We license data from third-party providers + and don’t have redistribution rights. However, we plan to offer + an API in the future. +

    +
    +
    +
    + + +
    +
    +
    +
    diff --git a/src/routes/sitemap/+page.svelte b/src/routes/sitemap/+page.svelte index 8fffaea0..c6ad9aa7 100644 --- a/src/routes/sitemap/+page.svelte +++ b/src/routes/sitemap/+page.svelte @@ -181,6 +181,10 @@ title: "Data Disclaimer", link: "/data-disclaimer", }, + { + title: "FAQ", + link: "/faq", + }, { title: "Advertise with Us", link: "/advertise", @@ -290,16 +294,18 @@
      - {#each data?.getBlogPosts as item} - {#if item?.category === "term"} -
    • - {item?.title} -
    • - {/if} + {#each data?.getBlogPosts + ?.filter((item) => item?.category === "term") + ?.sort( (a, b) => a?.title?.localeCompare(b?.title), ) as item} +
    • + + {item?.title} + +
    • {/each}
    diff --git a/src/routes/sitemaps/[slug]/+server.ts b/src/routes/sitemaps/[slug]/+server.ts index 5fc52716..9780493b 100644 --- a/src/routes/sitemaps/[slug]/+server.ts +++ b/src/routes/sitemaps/[slug]/+server.ts @@ -70,6 +70,7 @@ const pages = [ { title: "/market-flow/sector-flow" }, { title: "/affiliate-program" }, { title: "/dark-pool-flow" }, + { title: "/faq" }, ]; const N = 100; // Change this value as needed