如何应用高斯函数进行Elasticsearch范围查询?

How would I construct an ElasticSearch query to satisfy the following:

Price must be between 100,000 & 200,000, but also show results outside of this range, but with decreasing relevance if above 200k or below 100k.

So far I have the following but it doesn't seem to be doing what I want (omitted the wrapping query for brevity):

"function_score": {
        "query": {
          "range": {
            "price_amount": {
              "gte": 100000,
              "lte": 200000
            }
          }
        },
        "functions": [
          {
            "gauss": {
              "price_amount": {
                "origin": "50000",
                "offset": "50000",
                "scale": "10000"
              }
            }
          }
        ]
      }

Update:

Had another look and I think setting the function to the following, without the range query would do the trick, wouldn't it?

"function_score": {
        "functions": [
          {
            "gauss": {
              "price_amount": {
                "origin": "150000",
                "offset": "50000",
                "scale": "10000"
              }
            }
          }
        ]
      }

Many thanks! Lee