www.stripe.saena.ai Open in urlscan Pro
162.240.44.152  Public Scan

URL: https://www.stripe.saena.ai/
Submission: On October 11 via automatic, source certstream-suspicious — Scanned from IT

Form analysis 9 forms found in the DOM

<form wire:submit="sendPDF">
  <div class="row">
    <div class="col-lg-5">
      <div class="form-field">
        <input class="form-control" type="text" wire:model="fullname" name="fullname" id="fullname" placeholder="Your name" required="">
      </div>
      <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
    </div>
    <div class="col-lg-7">
      <div class="form-field">
        <input class="form-control" type="email" wire:model="email" name="email" id="email" placeholder="Email Address" required="">
      </div>
      <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
    </div>
    <div class="col-lg-12">
      <button type="submit" class="btn green-btn w-100">GET THE FREE MARKET VIEW! <div class="ms-3" wire:loading="" wire:target="sendPDF"><i class="fa fa-spinner fa-spin"></i></div></button>
    </div>
  </div>
</form>

<form wire:submit.prevent="register">
  <div class="row">
    <div class="col-lg-12 ">
      <div class="form-group">
        <label class="block font-medium text-sm text-gray-700" for="name"> Name </label>
        <input class="border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 py-3 shadow-sm form-control" wire:model="name" id="name" type="text" name="name" required="required" autofocus="autofocus" autocomplete="name">
        <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
      </div>
    </div>
    <div class="col-lg-12 ">
      <div class="form-group">
        <label class="block font-medium text-sm text-gray-700" for="email"> Email </label>
        <input class="border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 py-3 shadow-sm form-control" wire:model="email" id="email" type="email" name="email" required="required" autocomplete="username">
        <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
      </div>
    </div>
  </div>
  <div class="row">
    <div class="col-lg-6">
      <div class="form-group">
        <label class="block font-medium text-sm text-gray-700" for="password"> Password </label>
        <input class="border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 py-3 shadow-sm form-control" wire:model="password" id="password" type="password" name="password" required="required" autocomplete="new-password">
        <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
      </div>
    </div>
    <div class="col-lg-6">
      <div class="form-group">
        <label class="block font-medium text-sm text-gray-700" for="password_confirmation"> Confirm Password </label>
        <input class="border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 py-3 shadow-sm form-control" wire:model="password_confirmation" id="password_confirmation" type="password" name="password_confirmation" required="required"
          autocomplete="new-password">
        <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
      </div>
    </div>
  </div>
  <input type="hidden" id="subscription-id" wire:model="subscriptionId">
  <input type="hidden" id="square-subscription-id" wire:model="squareSubscriptionId" value="">
  <div class="col-md-12 pt-2">
    <div id="payment-form">
      <div id="card-container" wire:ignore="">
        <div id="single-card-wrapper-10d380d6-7016-a48f-154c-e84c9922187a" class="sq-card-wrapper">
          <div class="sq-card-iframe-container" style="height: 97px;"><iframe frameborder="0" height="97px" name="single-card-10d380d6-7016-a48f-154c-e84c9922187a" scrolling="no"
              src="https://sandbox.web.squarecdn.com/1.61.0/single-card-element-iframe.html" width="100%" class="sq-card-component"></iframe></div><span class="sq-card-message"></span>
        </div>
      </div>
      <div class="w-full text-center">
        <button id="card-button" type="button" class="btn submit-form">Pay with Card</button>
      </div>
    </div>
    <!-- <div id="google-pay-button" wire:ignore></div>
                    <div id="apple-pay-button" wire:ignore></div> -->
  </div>
  <script src="https://sandbox.web.squarecdn.com/v1/square.js"></script>
  <!-- <script src="https://pay.google.com/gp/p/js/pay.js" async></script> -->
  <script type="module">
    const appId = "sandbox-sq0idb-UYtNdQJxxiac16dGRNrkTw";
    const locationId = "L1S8AJ7W32VC6";
    const payments = Square.payments(appId, locationId);
    // Card Payment
    const card = await payments.card();
    await card.attach('#card-container');
    const cardButton = document.getElementById('card-button');
    cardButton.addEventListener('click', async () => {
      $('#loading').show();
      cardButton.disabled = true;
      try {
        const result = await card.tokenize();
        if (result.status === 'OK') {
          window.Livewire.find('Y5YCvx4yfwtAE2E9ZfQm').set('squareSubscriptionId', result);
          window.Livewire.find('Y5YCvx4yfwtAE2E9ZfQm').register();
        } else {
          let errorMessage = `Enter a valid card detail`;
          throw new Error(errorMessage);
          cardButton.disabled = false;
        }
      } catch (e) {
        console.error(e);
        cardButton.disabled = false;
        $('#loading').hide();
      }
    });
    // // Google Pay
    // function buildPaymentRequest(payments) {
    //     return payments.paymentRequest({
    //         countryCode: 'US',
    //         currencyCode: 'USD',
    //         total: {
    //             amount: '1.00',
    //             label: 'Total',
    //         },
    //     });
    // }
    // async function initializeGooglePay(payments) {
    //     const paymentRequest = buildPaymentRequest(payments)
    //     const googlePay = await payments.googlePay(paymentRequest);
    //     await googlePay.attach('#google-pay-button');
    //     return googlePay;
    // }
    // let googlePay;
    // try {
    //     googlePay = await initializeGooglePay(payments);
    //     const googlePayButton = document.getElementById('google-pay-button');
    //     googlePayButton.addEventListener('click', async () => {
    //         googlePayButton.disabled = true;
    //         try {
    //             const result = await googlePay.tokenize();
    //             if (result.status === 'OK') {
    //                 window.Livewire.find('Y5YCvx4yfwtAE2E9ZfQm').set('squareSubscriptionId', result);
    //                 window.Livewire.find('Y5YCvx4yfwtAE2E9ZfQm').register();
    //             } else {
    //                 let errorMessage = `Tokenization failed with status: ${result.status}`;
    //                 if (result.errors) {
    //                     errorMessage += ` and errors: ${JSON.stringify(
    //                         result.errors
    //                     )}`;
    //                 }
    //                 throw new Error(errorMessage);
    //                 googlePayButton.disabled = false;
    //             }
    //         } catch (e) {
    //             console.error(e);
    //             googlePayButton.disabled = false;
    //         }
    //     });
    // } catch (e) {
    //     console.error(e);
    //     googlePayButton.disabled = false;
    // }
    // // Apple Pay
    // async function initializeApplePay(payments) {
    //     const paymentRequest = buildPaymentRequest(payments)
    //     const applePay = await payments.applePay(paymentRequest);
    //     // Note: You don't need to `attach` applePay.
    //     return applePay;
    // }
    // let applePay;
    // try {
    //     applePay = await initializeApplePay(payments);
    //     const applePayButton = document.getElementById('apple-pay-button');
    //     applePayButton.addEventListener('click', async () => {
    //         applePayButton.disabled = true;
    //         try {
    //             const result = await applePay.tokenize();
    //             if (result.status === 'OK') {
    //                 window.Livewire.find('Y5YCvx4yfwtAE2E9ZfQm').set('squareSubscriptionId', result);
    //                 window.Livewire.find('Y5YCvx4yfwtAE2E9ZfQm').register();
    //             } else {
    //                 let errorMessage = `Tokenization failed with status: ${result.status}`;
    //                 if (result.errors) {
    //                     errorMessage += ` and errors: ${JSON.stringify(
    //                         result.errors
    //                     )}`;
    //                 }
    //                 throw new Error(errorMessage);
    //                 applePayButton.disabled = false;
    //             }
    //         } catch (e) {
    //             console.error(e);
    //             applePayButton.disabled = false;
    //         }
    //     });
    // } catch (e) {
    //     console.error(e);
    //     applePayButton.disabled = false;
    // }
  </script>
  <!-- pt-3 -->
  <div class="col-md-12">
    <div id="paypal-button-container" wire:ignore="">
      <div id="zoid-paypal-buttons-uid_62bc5a18ac_mde6nde6mzk" class="paypal-buttons paypal-buttons-context-iframe paypal-buttons-label-pay paypal-buttons-layout-vertical" data-paypal-smart-button-version="5.0.461"
        style="height: 0px; transition: 0.2s ease-in-out;">
        <style nonce="">
          #zoid-paypal-buttons-uid_62bc5a18ac_mde6nde6mzk {
            position: relative;
            display: inline-block;
            width: 100%;
            min-height: 35px;
            min-width: 200px;
            font-size: 0;
          }

          #zoid-paypal-buttons-uid_62bc5a18ac_mde6nde6mzk>iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
          }

          #zoid-paypal-buttons-uid_62bc5a18ac_mde6nde6mzk>iframe.component-frame {
            z-index: 100;
          }

          #zoid-paypal-buttons-uid_62bc5a18ac_mde6nde6mzk>iframe.prerender-frame {
            transition: opacity .2s linear;
            z-index: 200;
          }

          #zoid-paypal-buttons-uid_62bc5a18ac_mde6nde6mzk>iframe.visible {
            opacity: 1;
          }

          #zoid-paypal-buttons-uid_62bc5a18ac_mde6nde6mzk>iframe.invisible {
            opacity: 0;
            pointer-events: none;
          }

          #zoid-paypal-buttons-uid_62bc5a18ac_mde6nde6mzk>.smart-menu {
            position: absolute;
            z-index: 300;
            top: 0;
            left: 0;
            width: 100%;
          }
        </style><iframe allowtransparency="true"
          name="__zoid__paypal_buttons__eyJzZW5kZXIiOnsiZG9tYWluIjoiaHR0cHM6Ly93d3cuc3RyaXBlLnNhZW5hLmFpIn0sIm1ldGFEYXRhIjp7IndpbmRvd1JlZiI6eyJ0eXBlIjoicGFyZW50IiwiZGlzdGFuY2UiOjB9fSwicmVmZXJlbmNlIjp7InR5cGUiOiJyYXciLCJ2YWwiOiJ7XCJ1aWRcIjpcInpvaWQtcGF5cGFsLWJ1dHRvbnMtdWlkXzYyYmM1YTE4YWNfbWRlNm5kZTZtemtcIixcImNvbnRleHRcIjpcImlmcmFtZVwiLFwidGFnXCI6XCJwYXlwYWwtYnV0dG9uc1wiLFwiY2hpbGREb21haW5NYXRjaFwiOntcIl9fdHlwZV9fXCI6XCJyZWdleFwiLFwiX192YWxfX1wiOlwiXFxcXC5wYXlwYWxcXFxcLihjb218Y24pKDpcXFxcZCspPyRcIn0sXCJ2ZXJzaW9uXCI6XCIxMF8zXzNcIixcInByb3BzXCI6e1wic3R5bGVcIjp7XCJsYWJlbFwiOlwicGF5XCIsXCJsYXlvdXRcIjpcInZlcnRpY2FsXCIsXCJjb2xvclwiOlwiYmxhY2tcIixcInNoYXBlXCI6XCJyZWN0XCIsXCJ0YWdsaW5lXCI6ZmFsc2UsXCJoZWlnaHRcIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9LFwicGVyaW9kXCI6e1wiX190eXBlX19cIjpcInVuZGVmaW5lZFwifSxcIm1lbnVQbGFjZW1lbnRcIjpcImJlbG93XCIsXCJkaXNhYmxlTWF4V2lkdGhcIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9LFwiZGlzYWJsZU1heEhlaWdodFwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJib3JkZXJSYWRpdXNcIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9fSxcImNyZWF0ZVN1YnNjcmlwdGlvblwiOntcIl9fdHlwZV9fXCI6XCJjcm9zc19kb21haW5fZnVuY3Rpb25cIixcIl9fdmFsX19cIjp7XCJpZFwiOlwidWlkXzIxNDVjN2Q1ZWNfbWRlNm5kZTZtemtcIixcIm5hbWVcIjpcImNyZWF0ZVN1YnNjcmlwdGlvblwifX0sXCJvbkFwcHJvdmVcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF9kNWEyOTdiYjYxX21kZTZuZGU2bXprXCIsXCJuYW1lXCI6XCJvbkFwcHJvdmVcIn19LFwiY3NwTm9uY2VcIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9LFwiYWxsb3dCaWxsaW5nUGF5bWVudHNcIjp0cnVlLFwiYW1vdW50XCI6e1wiX190eXBlX19cIjpcInVuZGVmaW5lZFwifSxcImFwaVN0YWdlSG9zdFwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJhcHBsZVBheVwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJhcHBsZVBheVN1cHBvcnRcIjpmYWxzZSxcImJyYW5kZWRcIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9LFwiYnV0dG9uTG9jYXRpb25cIjpcInd3dy5zdHJpcGUuc2FlbmEuYWlcIixcImJ1dHRvblNlc3Npb25JRFwiOlwidWlkX2E2ODQyZjU1M2JfbWRlNm5kZTZtemtcIixcImJ1dHRvblNpemVcIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9LFwiYnV5ZXJDb3VudHJ5XCI6e1wiX190eXBlX19cIjpcInVuZGVmaW5lZFwifSxcImNsaWVudEFjY2Vzc1Rva2VuXCI6e1wiX190eXBlX19cIjpcInVuZGVmaW5lZFwifSxcImN1c3RvbWVySWRcIjpcIlwiLFwiY2xpZW50SURcIjpcIkFSdFNSaHlZSDFDaFFFVmtOV1JNUFM5bFZSRDYxejVqWXROZWR1eXVMUGdtakw0MnJyeUZnUHh6OUxxOWpDcGFxcXI1YjI1TWxLVEJ5bU1qXCIsXCJjbGllbnRNZXRhZGF0YUlEXCI6XCJ1aWRfNjllODYwYmU3MV9tZGU2bmRlNm16a1wiLFwiY29tbWl0XCI6dHJ1ZSxcImNvbXBvbmVudHNcIjpbXCJidXR0b25zXCJdLFwiY3JlYXRlQmlsbGluZ0FncmVlbWVudFwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJjcmVhdGVPcmRlclwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJjcmVhdGVWYXVsdFNldHVwVG9rZW5cIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9LFwiY3NwXCI6e1wibm9uY2VcIjpcIlwifSxcImN1cnJlbmN5XCI6XCJVU0RcIixcImRlYnVnXCI6ZmFsc2UsXCJkaXNhYmxlQ2FyZFwiOltdLFwiZGlzYWJsZUZ1bmRpbmdcIjpbXCJjcmVkaXRcIixcImNhcmRcIl0sXCJkaXNhYmxlU2V0Q29va2llXCI6dHJ1ZSxcImRpc3BsYXlPbmx5XCI6W10sXCJlbmFibGVGdW5kaW5nXCI6W10sXCJlbmFibGVUaHJlZURvbWFpblNlY3VyZVwiOmZhbHNlLFwiZW5hYmxlVmF1bHRcIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9LFwiZW52XCI6XCJzYW5kYm94XCIsXCJleHBlcmltZW50XCI6e1wiZW5hYmxlVmVubW9cIjpmYWxzZSxcInZlbm1vVmF1bHRXaXRob3V0UHVyY2hhc2VcIjpmYWxzZSxcInZlbm1vV2ViRW5hYmxlZFwiOmZhbHNlfSxcImV4cGVyaW1lbnRhdGlvblwiOnt9LFwiZmxvd1wiOlwic3Vic2NyaXB0aW9uX3NldHVwXCIsXCJmdW5kaW5nRWxpZ2liaWxpdHlcIjp7XCJwYXlwYWxcIjp7XCJlbGlnaWJsZVwiOnRydWUsXCJ2YXVsdGFibGVcIjp0cnVlfSxcInBheWxhdGVyXCI6e1wiZWxpZ2libGVcIjpmYWxzZSxcInZhdWx0YWJsZVwiOmZhbHNlLFwicHJvZHVjdHNcIjp7XCJwYXlJbjNcIjp7XCJlbGlnaWJsZVwiOmZhbHNlLFwidmFyaWFudFwiOm51bGx9LFwicGF5SW40XCI6e1wiZWxpZ2libGVcIjpmYWxzZSxcInZhcmlhbnRcIjpudWxsfSxcInBheWxhdGVyXCI6e1wiZWxpZ2libGVcIjpmYWxzZSxcInZhcmlhbnRcIjpudWxsfX19LFwiY2FyZFwiOntcImVsaWdpYmxlXCI6ZmFsc2UsXCJicmFuZGVkXCI6ZmFsc2UsXCJpbnN0YWxsbWVudHNcIjpmYWxzZSxcInZlbmRvcnNcIjp7XCJ2aXNhXCI6e1wiZWxpZ2libGVcIjp0cnVlLFwidmF1bHRhYmxlXCI6dHJ1ZX0sXCJtYXN0ZXJjYXJkXCI6e1wiZWxpZ2libGVcIjp0cnVlLFwidmF1bHRhYmxlXCI6dHJ1ZX0sXCJhbWV4XCI6e1wiZWxpZ2libGVcIjp0cnVlLFwidmF1bHRhYmxlXCI6dHJ1ZX0sXCJkaXNjb3ZlclwiOntcImVsaWdpYmxlXCI6ZmFsc2UsXCJ2YXVsdGFibGVcIjp0cnVlfSxcImhpcGVyXCI6e1wiZWxpZ2libGVcIjpmYWxzZSxcInZhdWx0YWJsZVwiOmZhbHNlfSxcImVsb1wiOntcImVsaWdpYmxlXCI6ZmFsc2UsXCJ2YXVsdGFibGVcIjp0cnVlfSxcImpjYlwiOntcImVsaWdpYmxlXCI6ZmFsc2UsXCJ2YXVsdGFibGVcIjp0cnVlfSxcIm1hZXN0cm9cIjp7XCJlbGlnaWJsZVwiOnRydWUsXCJ2YXVsdGFibGVcIjp0cnVlfSxcImRpbmVyc1wiOntcImVsaWdpYmxlXCI6dHJ1ZSxcInZhdWx0YWJsZVwiOnRydWV9LFwiY3VwXCI6e1wiZWxpZ2libGVcIjpmYWxzZSxcInZhdWx0YWJsZVwiOnRydWV9fSxcImd1ZXN0RW5hYmxlZFwiOmZhbHNlfSxcInZlbm1vXCI6e1wiZWxpZ2libGVcIjpmYWxzZSxcInZhdWx0YWJsZVwiOmZhbHNlfSxcIml0YXVcIjp7XCJlbGlnaWJsZVwiOmZhbHNlfSxcImNyZWRpdFwiOntcImVsaWdpYmxlXCI6ZmFsc2V9LFwiYXBwbGVwYXlcIjp7XCJlbGlnaWJsZVwiOnRydWV9LFwic2VwYVwiOntcImVsaWdpYmxlXCI6ZmFsc2V9LFwiaWRlYWxcIjp7XCJlbGlnaWJsZVwiOmZhbHNlfSxcImJhbmNvbnRhY3RcIjp7XCJlbGlnaWJsZVwiOmZhbHNlfSxcImdpcm9wYXlcIjp7XCJlbGlnaWJsZVwiOmZhbHNlfSxcImVwc1wiOntcImVsaWdpYmxlXCI6ZmFsc2V9LFwic29mb3J0XCI6e1wiZWxpZ2libGVcIjpmYWxzZX0sXCJteWJhbmtcIjp7XCJlbGlnaWJsZVwiOmZhbHNlfSxcInAyNFwiOntcImVsaWdpYmxlXCI6ZmFsc2V9LFwid2VjaGF0cGF5XCI6e1wiZWxpZ2libGVcIjpmYWxzZX0sXCJwYXl1XCI6e1wiZWxpZ2libGVcIjpmYWxzZX0sXCJibGlrXCI6e1wiZWxpZ2libGVcIjpmYWxzZX0sXCJ0cnVzdGx5XCI6e1wiZWxpZ2libGVcIjpmYWxzZX0sXCJveHhvXCI6e1wiZWxpZ2libGVcIjpmYWxzZX0sXCJib2xldG9cIjp7XCJlbGlnaWJsZVwiOmZhbHNlfSxcImJvbGV0b2JhbmNhcmlvXCI6e1wiZWxpZ2libGVcIjpmYWxzZX0sXCJtZXJjYWRvcGFnb1wiOntcImVsaWdpYmxlXCI6ZmFsc2V9LFwibXVsdGliYW5jb1wiOntcImVsaWdpYmxlXCI6ZmFsc2V9LFwic2F0aXNwYXlcIjp7XCJlbGlnaWJsZVwiOmZhbHNlfSxcInBhaWR5XCI6e1wiZWxpZ2libGVcIjpmYWxzZX19LFwiZnVuZGluZ1NvdXJjZVwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJnZXRQYWdlVXJsXCI6e1wiX190eXBlX19cIjpcImNyb3NzX2RvbWFpbl9mdW5jdGlvblwiLFwiX192YWxfX1wiOntcImlkXCI6XCJ1aWRfNWZkZDFiZDg5N19tZGU2bmRlNm16a1wiLFwibmFtZVwiOlwiZ2V0UGFnZVVybFwifX0sXCJnZXRQb3B1cEJyaWRnZVwiOntcIl9fdHlwZV9fXCI6XCJjcm9zc19kb21haW5fZnVuY3Rpb25cIixcIl9fdmFsX19cIjp7XCJpZFwiOlwidWlkXzQzNmY3MTNiM2FfbWRlNm5kZTZtemtcIixcIm5hbWVcIjpcImdldFBvcHVwQnJpZGdlXCJ9fSxcImdldFByZXJlbmRlckRldGFpbHNcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF8zYjA5YzUxZGI1X21kZTZuZGU2bXprXCIsXCJuYW1lXCI6XCJnZXRQcmVyZW5kZXJEZXRhaWxzXCJ9fSxcImdldFF1ZXJpZWRFbGlnaWJsZUZ1bmRpbmdcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF9hNWQzZTE4ZTU5X21kZTZuZGU2bXprXCIsXCJuYW1lXCI6XCJnZXRRdWVyaWVkRWxpZ2libGVGdW5kaW5nXCJ9fSxcImhvc3RlZEJ1dHRvbklkXCI6e1wiX190eXBlX19cIjpcInVuZGVmaW5lZFwifSxcImludGVudFwiOlwic3Vic2NyaXB0aW9uXCIsXCJqc1Nka0xpYnJhcnlcIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9LFwibG9jYWxlXCI6e1wiY291bnRyeVwiOlwiVVNcIixcImxhbmdcIjpcImVuXCJ9LFwibWVyY2hhbnRJRFwiOltdLFwibWVyY2hhbnRSZXF1ZXN0ZWRQb3B1cHNEaXNhYmxlZFwiOmZhbHNlLFwibWVzc2FnZVwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJub25jZVwiOlwiXCIsXCJvbkNhbmNlbFwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJvbkNsaWNrXCI6e1wiX190eXBlX19cIjpcInVuZGVmaW5lZFwifSxcIm9uQ29tcGxldGVcIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9LFwib25Jbml0XCI6e1wiX190eXBlX19cIjpcImNyb3NzX2RvbWFpbl9mdW5jdGlvblwiLFwiX192YWxfX1wiOntcImlkXCI6XCJ1aWRfODNjZTk0MTI4MF9tZGU2bmRlNm16a1wiLFwibmFtZVwiOlwib25Jbml0XCJ9fSxcIm9uTWVzc2FnZUNsaWNrXCI6e1wiX190eXBlX19cIjpcImNyb3NzX2RvbWFpbl9mdW5jdGlvblwiLFwiX192YWxfX1wiOntcImlkXCI6XCJ1aWRfNzJjYWU0NDQ4Ml9tZGU2bmRlNm16a1wiLFwibmFtZVwiOlwib25NZXNzYWdlQ2xpY2tcIn19LFwib25NZXNzYWdlSG92ZXJcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF9kMGY3MDA1YzQ4X21kZTZuZGU2bXprXCIsXCJuYW1lXCI6XCJvbk1lc3NhZ2VIb3ZlclwifX0sXCJvbk1lc3NhZ2VSZWFkeVwiOntcIl9fdHlwZV9fXCI6XCJjcm9zc19kb21haW5fZnVuY3Rpb25cIixcIl9fdmFsX19cIjp7XCJpZFwiOlwidWlkXzg4NDVjOTdkOTFfbWRlNm5kZTZtemtcIixcIm5hbWVcIjpcIm9uTWVzc2FnZVJlYWR5XCJ9fSxcIm9uU2hpcHBpbmdBZGRyZXNzQ2hhbmdlXCI6e1wiX190eXBlX19cIjpcInVuZGVmaW5lZFwifSxcIm9uU2hpcHBpbmdDaGFuZ2VcIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9LFwib25TaGlwcGluZ09wdGlvbnNDaGFuZ2VcIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9LFwiaGFzU2hpcHBpbmdDYWxsYmFja1wiOmZhbHNlLFwicGFnZVR5cGVcIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9LFwicGFydG5lckF0dHJpYnV0aW9uSURcIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9LFwicGF5bWVudE1ldGhvZE5vbmNlXCI6e1wiX190eXBlX19cIjpcInVuZGVmaW5lZFwifSxcInBheW1lbnRNZXRob2RUb2tlblwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJwYXltZW50UmVxdWVzdFwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJwbGF0Zm9ybVwiOlwiZGVza3RvcFwiLFwicmVmZXJyZXJEb21haW5cIjp7XCJfX3R5cGVfX1wiOlwidW5kZWZpbmVkXCJ9LFwicmVtZW1iZXJcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF83MDUwNjJhZThiX21kZTZuZGU2bXprXCIsXCJuYW1lXCI6XCJyZW1lbWJlclwifX0sXCJyZW1lbWJlcmVkXCI6W10sXCJyZW5kZXJlZEJ1dHRvbnNcIjpbXCJwYXlwYWxcIl0sXCJzZXNzaW9uSURcIjpcInVpZF82OWU4NjBiZTcxX21kZTZuZGU2bXprXCIsXCJzZGtDb3JyZWxhdGlvbklEXCI6XCJmNDQzNjU3NDVjMmMxXCIsXCJzZXNzaW9uU3RhdGVcIjp7XCJnZXRcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF9mMzc1MzU5NzI0X21kZTZuZGU2bXprXCIsXCJuYW1lXCI6XCJnZXRcIn19LFwic2V0XCI6e1wiX190eXBlX19cIjpcImNyb3NzX2RvbWFpbl9mdW5jdGlvblwiLFwiX192YWxfX1wiOntcImlkXCI6XCJ1aWRfMmJmNWVhYTY1ZF9tZGU2bmRlNm16a1wiLFwibmFtZVwiOlwic2V0XCJ9fX0sXCJnZXRTaG9wcGVySW5zaWdodHNVc2VkXCI6e1wiX190eXBlX19cIjpcImNyb3NzX2RvbWFpbl9mdW5jdGlvblwiLFwiX192YWxfX1wiOntcImlkXCI6XCJ1aWRfZjA3MTExMjg4Y19tZGU2bmRlNm16a1wiLFwibmFtZVwiOlwiQ3JcIn19LFwic3RhZ2VIb3N0XCI6e1wiX190eXBlX19cIjpcInVuZGVmaW5lZFwifSxcInN0b3JhZ2VJRFwiOlwidWlkXzc4ZDY3ZGY3NmRfbWRlNm5kZTZtemtcIixcInN0b3JhZ2VTdGF0ZVwiOntcImdldFwiOntcIl9fdHlwZV9fXCI6XCJjcm9zc19kb21haW5fZnVuY3Rpb25cIixcIl9fdmFsX19cIjp7XCJpZFwiOlwidWlkX2MxM2Q5Y2M0MTJfbWRlNm5kZTZtemtcIixcIm5hbWVcIjpcImdldFwifX0sXCJzZXRcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF80MjhlNTIzN2NhX21kZTZuZGU2bXprXCIsXCJuYW1lXCI6XCJzZXRcIn19fSxcInN1cHBvcnRlZE5hdGl2ZUJyb3dzZXJcIjpmYWxzZSxcInN1cHBvcnRzUG9wdXBzXCI6dHJ1ZSxcInRlc3RcIjp7XCJhY3Rpb25cIjpcImNoZWNrb3V0XCJ9LFwidXNlckV4cGVyaWVuY2VGbG93XCI6e1wiX190eXBlX19cIjpcInVuZGVmaW5lZFwifSxcInVzZXJJRFRva2VuXCI6e1wiX190eXBlX19cIjpcInVuZGVmaW5lZFwifSxcInZhdWx0XCI6dHJ1ZSxcIndhbGxldFwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn19LFwiZXhwb3J0c1wiOntcImluaXRcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF81NjAzZTkwYzhhX21kZTZuZGU2bXprXCIsXCJuYW1lXCI6XCJpbml0XCJ9fSxcImNsb3NlXCI6e1wiX190eXBlX19cIjpcImNyb3NzX2RvbWFpbl9mdW5jdGlvblwiLFwiX192YWxfX1wiOntcImlkXCI6XCJ1aWRfNTk2Yjk2OWRmMl9tZGU2bmRlNm16a1wiLFwibmFtZVwiOlwiY2xvc2U6Om1lbW9pemVkXCJ9fSxcImNoZWNrQ2xvc2VcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF82MTFkM2YyMjAwX21kZTZuZGU2bXprXCIsXCJuYW1lXCI6XCJjaGVja0Nsb3NlXCJ9fSxcInJlc2l6ZVwiOntcIl9fdHlwZV9fXCI6XCJjcm9zc19kb21haW5fZnVuY3Rpb25cIixcIl9fdmFsX19cIjp7XCJpZFwiOlwidWlkXzc5YjE4ZTFkZDlfbWRlNm5kZTZtemtcIixcIm5hbWVcIjpcIl9uXCJ9fSxcIm9uRXJyb3JcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF8yYWJiNDA5NDJkX21kZTZuZGU2bXprXCIsXCJuYW1lXCI6XCJxblwifX0sXCJzaG93XCI6e1wiX190eXBlX19cIjpcImNyb3NzX2RvbWFpbl9mdW5jdGlvblwiLFwiX192YWxfX1wiOntcImlkXCI6XCJ1aWRfZjExMzU0NzU3N19tZGU2bmRlNm16a1wiLFwibmFtZVwiOlwiZ25cIn19LFwiaGlkZVwiOntcIl9fdHlwZV9fXCI6XCJjcm9zc19kb21haW5fZnVuY3Rpb25cIixcIl9fdmFsX19cIjp7XCJpZFwiOlwidWlkXzNmZDNiYmRhZTRfbWRlNm5kZTZtemtcIixcIm5hbWVcIjpcInZuXCJ9fSxcImV4cG9ydFwiOntcIl9fdHlwZV9fXCI6XCJjcm9zc19kb21haW5fZnVuY3Rpb25cIixcIl9fdmFsX19cIjp7XCJpZFwiOlwidWlkXzQ5NGRmZGRlZDhfbWRlNm5kZTZtemtcIixcIm5hbWVcIjpcIlduXCJ9fX19In19__"
          title="PayPal" allowpaymentrequest="allowpaymentrequest" scrolling="no" id="jsx-iframe-7db6e721e2" class="component-frame visible" style="background-color: transparent; border: none;"></iframe>
        <div id="smart-menu" class="smart-menu"></div>
        <div id="installments-modal" class="installments-modal"></div><iframe name="__detect_close_uid_75baa8d0bd_mde6nde6mzk__" style="display: none;"></iframe>
      </div>
    </div>
  </div>
  <script src="https://www.paypal.com/sdk/js?client-id=ARtSRhyYH1ChQEVkNWRMPS9lVRD61z5jYtNeduyuLPgmjL42rryFgPxz9Lq9jCpaqqr5b25MlKTBymMj&amp;vault=true&amp;intent=subscription&amp;disable-funding=credit,card"
    data-sdk-integration-source="button-factory" data-uid-auto="uid_mzhjzrpdtaugkvxeqummidhthlprhw"></script>
  <script>
    paypal.Buttons({
      style: {
        layout: 'vertical',
        color: 'black',
        shape: 'rect',
        label: 'pay',
        tagline: false
      },
      createSubscription: function(data, actions) {
        return actions.subscription.create({
          "plan_id": "P-63M65615KL646592KM3UQSCQ"
        });
      },
      onApprove: function(data, actions) {
        $('#loading').show();
        window.Livewire.find('Y5YCvx4yfwtAE2E9ZfQm').set('subscriptionId', data.subscriptionID);
        window.Livewire.find('Y5YCvx4yfwtAE2E9ZfQm').register();
      },
      onError: function(err) {
        console.error('PayPal Error:', err);
        $('#loading').hide();
      }
    }).render('#paypal-button-container');
  </script>
  <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
  <!-- <div class="submit">
                    <button type="submit" class="btn submit-form">Register <div class="ms-3" wire:loading><i class="fa fa-spinner fa-spin"></i></div></button>
                </div> -->
</form>

<form wire:submit="sendQuiz">
  <!--[if BLOCK]><![endif]-->
  <div class="question ml-sm-5 pl-sm-5 pt-2" id="1">
    <h2 class="py-2 h5 mb-3">Q1: What is a key characteristic of options trading?</h2>
    <div class="ml-md-3 ml-sm-3 pl-md-5" id="options">
      <div class="row">
        <div class="col-lg-12">
          <label class="options">The obligation to buy or sell a stock at a set price within a specific time period. <input type="radio" wire:click="nextQuestion(1, 'a')" wire:model="answer_one" name="answer_one"
              value="The obligation to buy or sell a stock at a set price within a specific time period" required="">
            <span class="checkmark"></span>
          </label>
        </div>
        <div class="col-lg-12">
          <label class="options">The right, but not the obligation, to buy or sell a stock at a set price before the option expires. <input type="radio" wire:click="nextQuestion(1, 'b')" wire:model="answer_one" name="answer_one"
              value="The right, but not the obligation, to buy or sell a stock at a set price before the option expires">
            <span class="checkmark"></span>
          </label>
        </div>
        <div class="col-lg-12">
          <label class="options">A strategy that guarantees profit in all market conditions. <input type="radio" wire:click="nextQuestion(1, 'c')" wire:model="answer_one" name="answer_one"
              value="A strategy that guarantees profit in all market conditions">
            <span class="checkmark"></span>
          </label>
        </div>
        <div class="col-lg-12">
          <label class="options">A method of transferring stock ownership without any financial transaction. <input type="radio" wire:click="nextQuestion(1, 'd')" wire:model="answer_one" name="answer_one"
              value="A method of transferring stock ownership without any financial transaction">
            <span class="checkmark"></span>
          </label>
        </div>
      </div>
    </div>
    <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
  </div>
  <!--[if ENDBLOCK]><![endif]-->
</form>

<form wire:submit="sendPDF">
  <div class="row">
    <div class="col-lg-5">
      <div class="form-field">
        <input class="form-control" type="text" wire:model="fullname" name="fullname" id="fullname" placeholder="Your name" required="">
      </div>
      <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
    </div>
    <div class="col-lg-7">
      <div class="form-field">
        <input class="form-control" type="email" wire:model="email" name="email" id="email" placeholder="Email Address" required="">
      </div>
      <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
    </div>
    <div class="col-lg-12">
      <button type="submit" class="btn green-btn w-100">GET OPTIONS GUIDE <div class="ms-3" wire:loading="" wire:target="sendPDF"><i class="fa fa-spinner fa-spin"></i></div></button>
    </div>
  </div>
</form>

<form wire:submit="sendPDF">
  <div class="row">
    <div class="col-lg-5">
      <div class="form-field">
        <input class="form-control" type="text" wire:model="fullname" name="fullname" id="fullname" placeholder="Your name" required="">
      </div>
      <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
    </div>
    <div class="col-lg-7">
      <div class="form-field">
        <input class="form-control" type="email" wire:model="email" name="email" id="email" placeholder="Email Address" required="">
      </div>
      <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
    </div>
    <div class="col-lg-12">
      <button type="submit" class="btn green-btn w-100">Get CHATGBT GUIDE BOOK <div class="ms-3" wire:loading="" wire:target="sendPDF"><i class="fa fa-spinner fa-spin"></i></div></button>
    </div>
  </div>
</form>

<form wire:submit="sendPDF">
  <div class="row">
    <div class="col-lg-5">
      <div class="form-field">
        <input class="form-control" type="text" wire:model="fullname" name="fullname" id="fullname" placeholder="Your name" required="">
      </div>
      <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
    </div>
    <div class="col-lg-7">
      <div class="form-field">
        <input class="form-control" type="email" wire:model="email" name="email" id="email" placeholder="Email Address" required="">
      </div>
      <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
    </div>
    <div class="col-lg-12">
      <button type="submit" class="btn green-btn w-100">GET THE FREE MARKET VIEW! <div class="ms-3" wire:loading="" wire:target="sendPDF"><i class="fa fa-spinner fa-spin"></i></div></button>
    </div>
  </div>
</form>

<form wire:submit="addFeedback">
  <div class="col-md-12 ">
    <div class="form-group">
      <label class="block font-medium text-sm text-gray-700" for="feedback_message">
      </label>
      <textarea class="form-control h-auto" wire:model="feedback_message" id="feedback_message" name="feedback_message" rows="7" placeholder="Write your message here..." required="required" autofocus="autofocus"></textarea>
      <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
    </div>
  </div>
  <div class="submit">
    <button type="submit" class="btn submit-form">Submit <div class="ms-3" wire:loading=""><i class="fa fa-spinner fa-spin"></i></div></button>
  </div>
</form>

<form wire:submit="login">
  <div class="col-md-12 ">
    <div class="form-group">
      <label class="block font-medium text-sm text-gray-700" for="email"> Email </label>
      <input class="border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 py-3 shadow-sm form-control" wire:model="form.email" id="email" type="email" name="email" required="required" autofocus="autofocus" autocomplete="username">
      <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
    </div>
  </div>
  <div class="col-md-12">
    <div class="form-group">
      <label class="block font-medium text-sm text-gray-700" for="password"> Password </label>
      <input class="border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 py-3 shadow-sm form-control" wire:model="form.password" id="password" type="password" name="password" required="required" autocomplete="current-password">
      <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
    </div>
  </div>
  <div class="row">
    <div class="col-lg-6 col-md-12">
      <div class="form-group">
        <label for="remember" class="d-inline-flex align-middle">
          <input wire:model="form.remember" id="remember" type="checkbox" class="rounded h-auto" name="remember">
          <span class="ms-1">Remember me</span>
        </label>
      </div>
    </div>
    <div class="col-lg-6 col-md-12 forgot-link">
      <!--[if BLOCK]><![endif]--> <a class="text-secondary rounded-md" href="javascript:void(0)" data-bs-toggle="modal" data-bs-target="#ForgotPasswordModal">
                    Forgot your password?
                </a>
      <!--[if ENDBLOCK]><![endif]-->
    </div>
  </div>
  <div class="submit">
    <button type="submit" class="btn submit-form">Sign in <div class="ms-3" wire:loading=""><i class="fa fa-spinner fa-spin"></i></div></button>
  </div>
</form>

<form wire:submit="sendPasswordResetLink">
  <!-- Email Address -->
  <div class="col-md-12">
    <div class="form-group">
      <label class="block font-medium text-sm text-gray-700" for="email"> Email </label>
      <input class="border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 py-3 shadow-sm form-control" wire:model="email" id="email" type="email" name="email" required="required" autofocus="autofocus">
      <!--[if BLOCK]><![endif]--> <!--[if ENDBLOCK]><![endif]-->
    </div>
  </div>
  <div class="submit">
    <button type="submit" class="btn submit-form">Email Password Reset Link <div wire:loading=""><i class="fa fa-spinner fa-spin"></i></div></button>
  </div>
</form>

Text Content

 * market view
 * free guides
 * take the quiz
 * subscription
   
 * Sign Up for Free
 * Sign in

 * Facebook
 * Instagram
 * Twitter
 * TikTok
 * Linkedin

Follow Us


MASTER THE MARKET
WITH AI-ENHANCED INVESTMENT
STRATEGIES!

Welcome to Saena — Your Gateway to Exclusive Investment
Strategies! Dive into the once-guarded realm of hedge funds,
now made accessible through our cutting-edge AI and
quantitative analysis.

Sign Up for Free Sign in



DOWNLOAD ONE OF OUR POWERFUL FREE GUIDES TO HELP MAXIMIZE YOUR PORTFOLIO’S
RETURNS


GETTING STARTED WITH OPTIONS GUIDE

GETTING STARTED WITH OPTIONS GUIDE


CHATGBT GUIDE FOR INVESTMENT MANAGMENT

HOW TO USE CHATGPT TO GENERATE INVESTING IDEAS

FREE SAENA MARKET VIEW


THE WEEKLY
SAENA INVESTMENTS
MARKET VIEW

for Investors

Discover long-term investing that matter with our free monthly market guide.
It's packed with the latest market commentary, expert analysis, and research
from various sources—all simplified through our AI and quantitative tools.
You'll receive clear, actionable trade ideas for both long and short positions,
plus tips on best way to start investing to boost your portfolio's performance.

WHERE SHOULD WE SEND YOUR FREE MARKET VIEW?
GET THE FREE MARKET VIEW!



HI-WE ARE SAENA. YOUR AI-POWERED INVESTMENT COMPASS. ACCESS ELITE PRIVATE
BANKING AND HEDGE FUND STRATEGIES, NOW DEMYSTIFIED WITH OUR ADVANCED AI
INVESTING AND QUANTITATIVE TOOLS!

Are you frustrated with being locked out of sophisticated investment techniques,
navigating complex financial markets without adequate support, or seeing your
hard-earned money underperform due to limited access to advanced long term
investing strategies You're not alone.

Enter Saena - your portal to democratized, elite investment strategies once
exclusive to top institutions, minus the high fees. With Saena, hidden costs are
eliminated, paving the way for informed long term investing decisions driven by
cutting-edge technology. We are committed to making sophisticated, data-driven
investing accessible to everyone, regardless of your net worth. Embrace the
future of investing with Saena’s AI-enhanced insights.

Quiz:


ASSESS YOUR INVESTMENT KNOWLEDGE & PERFORMANCE

Select the most appropriate answer for each question. Your score will help us
provide personalized strategies to enhance your investment approach!

take the quiz



WHAT’S YOUR BIGGEST ISSUE RIGHT NOW?


I LACK ACCESS TO
EXPERT ADVICE..

and I want access to research that is actionable, timely - and relevant to MY
PORTFLIO.

Saena Recommends:

GET MY FREE MARKET VIEW


MY PORTFOLIO
PERFORMANCE

My portfolio isn’t performing as well as I would like. I want to optimize it and
maximize my returns.

Saena Recommends:

take my quiz to see what’s wrong


LIMITED ADVANCED
INVESTING KNOWLEDGE

I need knowledge to execute advanced investment strategies that leverage options
and futures trading.

Saena Recommends:

get my guide to options trading


INVEST SMARTER WITH ADVANCED TECHNOLOGY


DAILY MARKET
INSIGHTS

Begin your day with in-depth market updates, enriched by advanced quantitative
research and analysis. Our insights provide you with a comprehensive view of
market trends, helping you make informed decisions with confidence.


AI-DRIVEN
MODEL PORTFOLIO

Each week, you’ll receive a carefully curated list of AI-recommended stocks,
complete with precise allocation suggestions designed to help you maximize
returns and outperform the market. Our tailored recommendations ensure your
portfolio stays optimized for current market condition.


PORTFOLIO UPDATES
IN REAL-TIME

Stay ahead with real-time updates and instant notifications when our portfolio
strategies shift. Along with actionable market insights, you’ll receive clear
"Risk On/Off" signals to guide your portfolio selection decisions, helping you
navigate changing market conditions with precision.


THE SAENA STORY

Meet Mehdi and Matt: The Dynamic Duo Behind Saena: For 20 years, Mehdi and
Matt's friendship and passion for finance have driven them to create Saena, an
investment firm that truly stands out. Mehdi, our “Market Maestro” has extensive
experience at some of the world’s most prestigious banks, including J.P. Morgan
and Capital One. He holds certifications in Investment Foundations, Machine
Learning and Data Science for Investment Professionals from the CFA Institute,
blending traditional finance expertise with cutting-edge data science and AI
skills to offer unique investment insights. Matt, the “Operations Guru,” brings
strategic expertise from leading consulting firms like Booz Allen, PwC, and
Accenture.

Saena was born from countless late-night discussions over takeout and coffee,
fueled by their frustration with traditional financial institutions that left
average investors high and dry during downturns. They vividly remember the 2022
market slump, where many portfolios took a nosedive over 20%. The standard
advice was to be patient, but Mehdi and Matt knew there had to be a more
proactive solution.

While wealthy investors enjoyed sophisticated strategies through private banks
and hedge funds, Mehdi and Matt saw an opportunity to democratize these high-end
strategies. Thus, Saena’s subscription service was born, offering hedge
fund-like investing to everyone.

At Saena, Mehdi’s investment wizardry and Matt’s operational savvy combine to
enhance client wealth. They've built a community where every investor, whether a
novice or an experienced pro, has a fair shot at financial success. Saena is
more than just a financial firm; it's about building trust and community in the
financial world, with a touch of fun along the way.

GET SUBSCRIPTION

 * Pay with Card
 * Google Pay
 * Apple Pay
   



SIGN UP


WELCOME TO SAENA AI - - HERE’S WHAT YOU’LL GET WITH YOUR SUBSCRIPTION:

 1. ✔AI-Driven Weekly Model Portfolio
    Receive a dynamically re-balanced model portfolio every week, powered by
    cutting-edge AI.
 2. ✔Weekly Newsletter
    Get our weekly newsletter highlighting our top stock picks and easy-
    to-follow instructions on how much to invest in each one.
 3. ✔Daily Market Insights
    Start each day with exclusive market updates powered by advanced research,
    keeping you ahead of the curve.
 4. ✔Real-Time Portfolio Updates
    Stay in sync with weekly summaries or real-time alerts as our portfolio
    allocations shift.
 5. ✔Actionable Trade Ideas
    Get access to well-researched, strategic trade ideas with defined entry and
    exit points.
 6. ✔Risk Management Strategies
    Learn how to safeguard your investments with proven risk management
    techniques and risk off/on signals.
 7. ✔Exclusive Investment Guides
    Unlock advanced guides like “Investing with ChatGPT,” “Options Trading
    Mastery,” and more to sharpen your investing skills.

Sign Up with Google
or
Name
Email
Password
Confirm Password
Pay with Card


By signing up, you agree to Saena's terms of use and privacy policy.

QUIZ
ASSESS YOUR INVESTMENT KNOWLEDGE & PERFORMANCE


Q1: WHAT IS A KEY CHARACTERISTIC OF OPTIONS TRADING?

The obligation to buy or sell a stock at a set price within a specific time
period.
The right, but not the obligation, to buy or sell a stock at a set price before
the option expires.
A strategy that guarantees profit in all market conditions.
A method of transferring stock ownership without any financial transaction.

DOWNLOAD OUR POWERFUL FREE GUIDES TO HELP MAXIMIZE YOUR PORTFOLIO’S RETURNS

GET OPTIONS GUIDE

Get CHATGBT GUIDE BOOK

GET THE FREE MARKET VIEW!


SHARE YOUR FEEDBACK

Submit


SIGN IN

Email
Password
Remember me
Forgot your password?
Sign in

or
Sign In with Google

FORGOT PASSWORD

Forgot your password? No problem. Just let us know your email address and we
will email you a password reset link that will allow you to choose a new one.
Email
Email Password Reset Link

Know password?

DISCLOSURES

 1. The Site, its content (the "Site Content"), and the information therein do
    not constitute, nor should they be construed as, advice, guidance, or
    recommendations regarding any actions or decisions, including investment
    decisions or the purchase or sale of securities, shares, or other assets.
    Users acknowledge that the Site Content is general, impersonal and is not
    tailored to specific individuals or investment programs.
 2. Past performance does not guarantee future results or performance. Results
    depicted on the site are hypothetical and do not represent returns of an
    actual investor. No representation is being made that an account as or will
    achieve results similar to those shown. The site Content is provided for
    informational and educational purposes only.
 3. Investments and strategies discussed on the Site and in the Site Content are
    speculative and involve significant risks. Investors should seek guidance
    from professional investment advisors who know their individual and personal
    situation before undertaking investments. There is no assurance of the
    success of any strategy or investment, and actual results may differ from
    projections. Results likewise often differ from investor to investor.
 4. Users acknowledge that the Site Content is not personalized advice and
    should not replace professional financial advice. Any investment decisions
    made based on information from the Site or the Site Content are made solely
    at your own risk. All investments are high risk undertakings. Users
    acknowledge that site content could be out of date or incorrect. Saena
    Investment LP, its affiliates, and representatives are not responsible for
    the accuracy, usefulness, or availability of information on the Site, nor
    for any trading or investment decisions made based on such information.
    Employees of Saena Investment LP and Site contributors may hold or trade
    positions in securities or commodities mentioned on the Site for their own
    accounts.
 5. Information in the Site Content is obtained from sources believed to be
    accurate, including third- party contributors. However, Saena Investment LP
    does not independently verify information provided by third-party
    contributors and is not responsible for their errors. Likewise, performance
    data is derived from sources believed by Saena Investment LP to be reliable
    but information provided by third party sources is not guaranteed to be
    accurate by these sources, or by Saena Investment LP.

USER AGREEMENT

Welcome to Saena Invest!

Before using our services, please carefully review this User Agreement, which
incorporates the latest Google policies for websites offering financial
services. By accessing or using our website, you agree to comply with and be
bound by the terms and conditions outlined in this agreement. If you do not
agree with any part of these terms, you may not access the website or use our
services.

1. Acceptance of Terms

By using Saena Invest you agree to be bound by the terms and conditions of this
User Agreement. This agreement may be updated from time to time, and it is your
responsibility to review the changes. Your continued use of the website
following the posting of any changes constitutes acceptance of those changes.

2. Compliance with Google Policies

As a website offering financial services, Saena Invest adheres to the latest
Google policies for such websites. This includes compliance with Google's
advertising policies, quality guidelines, and any other relevant requirements
outlined by Google.

3. Description of Services

Saena Invest provides investment management services, including financial
advice, portfolio management, and related information. The information on the
website is for informational purposes only and should not be considered as
professional financial advice. You should consult with a qualified financial
advisor before making any investment decisions.

4. Eligibility

To use Saena Invest you must be at least 18 years old and have the legal
capacity to enter a contract. By using our services, you confirm that you meet
these requirements.

5. User Responsibilities

You agree to provide accurate and complete information when using Saena Invest.
You are responsible for maintaining the confidentiality of your account
credentials and for all activities that occur under your account.

6. Risks and Disclaimers

Saena Invest does not guarantee the accuracy, completeness, or timeliness of the
information provided on the website. The education provided is purely
educational. You acknowledge and agree that you are solely responsible for your
investment decisions.

7. Privacy Policy

Our Privacy Policy outlines how we collect, use, and protect your personal
information. By using Saena Invest you consent to the practices described in our
Privacy Policy.

8. Intellectual Property

All content and materials on Saena Invest including text, graphics, logos, and
software, are the property of Saena Invest and are protected by intellectual
property laws. You may not reproduce, distribute, or use any content from our
website without our express written consent.

9. Termination of Services

SAENA Invest reserves the right to terminate or suspend your access to the
website and services at any time, with or without cause, and without notice.

10. Governing Law

This User Agreement is governed by the laws of Virginia, USA. Any disputes
arising from or relating to this agreement shall be subject to the exclusive
jurisdiction of the courts in Virginia, USA.

11. Contact Information

If you have any questions or concerns about this User Agreement, please contact
us at info@Saenainvest.com.

By using Saena Invest you acknowledge that you have read, understood, and agree
to be bound by the terms and conditions of this User Agreement.

PRIVACY POLICY

Welcome to Saena Invest

We value your trust and are committed to protecting your privacy. This Privacy
Policy explains how we collect, use, disclose, and safeguard your information
when you use our website and services. By accessing or using Saena Invest you
agree to the terms outlined in this Privacy Policy.

1. Information We Collect

We collect both personal and non-personal information to provide you with the
best possible experience on Saena Invest. This information may include:



 * Personal Information: Name, email address, contact details, and other
   information you provide when using our services.
 * Financial Information: Information related to your financial status,
   investment preferences, and transactions.
 * Log and Usage Data: Information about your interactions with our website,
   including IP addresses, browser type, pages visited, and other usage data.

2. How We Use Your Information

We use the collected information for the following purposes:

 * Provide and maintain our services.
 * Personalize your experience on Saena Invest
 * Process transactions and provide investment management services.
 * Respond to your inquiries and provide customer support.
 * Comply with legal and regulatory requirements.

3. Data Sharing and Disclosure

We may share your information in the following circumstances:

 * With third-party service providers for the purpose of providing and improving
   our services.
 * With your consent or at your direction.
 * In response to a legal request or to comply with applicable laws and
   regulations.
 * To protect the rights, property, or safety of Saena Invest or others.

4. Cookies and Tracking Technologies

We use cookies and similar technologies to collect information about your
browsing behavior and improve the functionality of Saena Invest. You can manage
your cookie preferences through your browser settings.

5. Security Measures

We employ industry-standard security measures to protect your information from
unauthorized access, disclosure, alteration, or destruction. However, no method
of transmission over the internet or electronic storage is completely secure,
and we cannot guarantee absolute security.

6. Google Policies Compliance

As a website offering financial services, Saena Invest adheres to the latest
Google policies for such websites. This includes compliance with Google's
advertising policies, quality guidelines, and any other relevant requirements
outlined by Google.

7. Changes to the Privacy Policy

We may update this Privacy Policy periodically to reflect changes in our
practices. The latest version will be posted on Saena Invest with the date of
the last update. Your continued use of our services after any changes to this
Privacy Policy signifies your acceptance of those changes.

8. Contact Information

If you have any questions or concerns about this Privacy Policy, please contact
us at info@saenainvest.com.

By using Saena Invest, you acknowledge that you have read, understood, and agree
to the terms of this Privacy Policy.

We bridge the gap between everyday investors and the most sophisticated private
banks and hedge funds on Wall Street.


IMPORTANT LINKS


 * Terms of Use
 * Privacy Policy
 * Disclosures
 * Blog
   

BACK TO TOP
 * 
 * 
 * 
 * 
 * 

© Copyright 2024 by Saena. All rights reserved.